I have a database query which will either return NULL or a boolean (bit) value.
NULL
I wish to store this value in a variable of type Nullable<
Nullable<
You can just do the following
bool? myNullableBoolean = SqlConvert.ToType(reader["myNullableBooleanColumn"]);