public static byte CheckNullByte(this SqlDataReader dr, int ordinal){ return dr.IsDBNull(ordinal) ? byte.MinValue : dr.GetByte(ordinal); }
Login to post response