vote up 3 vote down star

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.

flag

3 Answers

vote up 10 vote down check

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|flag
Thanks, I appreciate your help. – Chin Sep 30 at 2:32
No problem, Glad it worked out for you. – Quintin Robinson Sep 30 at 2:32
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
Interesting, I wonder why you got a minus vote for that idea. Anyway thanks for the input. – Chin Sep 30 at 2:33
@Chin: someone figured I didn't really answer your question. – MusiGenesis Sep 30 at 2:46

Your Answer

Get an OpenID
or

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