Sorry for such simple question.
How would I check this for nulls?
obj.DivisionNotes = (string)row["DivisionNotes"];
I'm thinking something like this.
obj.DivisionNotes = (string)row["DivisionNotes"]?null:"No notes";
Am I right.
Any help much appreciated.