up vote 3 down vote favorite
share [g+] share [fb]

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.

link|improve this question

78% accept rate
feedback

3 Answers

up vote 10 down vote accepted

Your casting of a null will cause a problem, you can use an as cast along with the null coalescing operator to solve your issues..

obj.DivisionNotes = (row["DivisionNotes"] as string) ?? "No notes";
link|improve this answer
Thanks, I appreciate your help. – Chin Sep 30 '09 at 2:32
No problem, Glad it worked out for you. – Quintin Robinson Sep 30 '09 at 2:32
feedback

You could use the ISNULL function in your original T-SQL query, changing a query like this:

SELECT ID, Name, DivisionNotes FROM tblWHATEVER

to

SELECT ID, Name, ISNULL(DivisionNotes, 'No notes') AS 
    DivisionNotes FROM tblWHATEVER

I'm not saying this is better than checking for null in your code, but sometimes a simple change in your query can save you from changing your code in a bunch of different places.

link|improve this answer
Interesting, I wonder why you got a minus vote for that idea. Anyway thanks for the input. – Chin Sep 30 '09 at 2:33
@Chin: someone figured I didn't really answer your question. – MusiGenesis Sep 30 '09 at 2:46
feedback

There are many way to handle nulls in a datarow. Please this other post where I explain multiple method of doing that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.