Check for column name in a SqlDataReader object
How do I check to see if a column exists in a SqlDataReader object? In my data access layer, I have create a … Read more
How do I check to see if a column exists in a SqlDataReader object? In my data access layer, I have create a … Read more
After connecting to the database, can I get the name of all the columns that were returned in my SqlDataReader? 10 Answers 10
I’m using a SQLdatareader to build POCOs from a database. The code works except when it encounters a null value in the database. … Read more