Is there a way to dump the DbDataReader itself and not the data?
Options
I just want to see the DbDataReader's properties and not the data.
Comments
-
This is now easily possible from LINQPad v5.09.04, with LINQPad's new Util.ToExpando method:
Util.ToExpando (myDataReader).Dump();