I have Visual Studio 2013 Ultimate and creating application of WPF.
I have to read the data from a SQL Server stored procedure by using SqlDataReader.
Sometimes, if data exists, I can read data using
sdr(sqldatareader).Read()But in the case when no data exists, I just select 'false' in stored procedure but I don't know how to read that string with having no column name by
SqlDataReader.
