I have a column DBIsValid of type bit which is nullable.
I have a variable IsValid of type bool which I want to set as True if the DBIsvalid is True. Should my below line of code work fine or should I be checking for NULLs.
bool IsValid = this.DBIsValid.Value
Basically will DBIsValid return false if it is NULL in DB?
DBIsValid
at all? - Tim Schmelter