I have a question about SqlDataReader:
Is there some way to modificated the values in SqlDataReader? For example:
while (sdr.Read())
{
double PRICE = double.Parse(sdr["PRICE"].ToString());
if (PRICE == null) PRICE = Single.MinValue;
.....
}
I would like that for each null value in my DataReader, assigned Single.MinValue to use after this modifications in another process