Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've begun using Massive, by Rob Conery. Awesome little "ORM" and very performant. However, I'm running into issues with System.DBNull comparisons on my nullable fields.

For example, I want to check if a property matches another property (in this example, a long type)

if (obj.MemberId == otherObj.MemberId) return true;

throws exception: Operator '==' cannot be applied to operands of type 'System.DBNull' and 'long'. In this case, obj.MemberId was null (more specifically, DBNull).

Ok, so I check if it's DBNull.Value first right? Like this:

if (obj.MemberId != DBNull.Value)
    return obj.MemberId == otherObj.MemberId;

Cool, that works, at least while obj.MemberId is DBNull, but when it's not (contains a long), another exception: Operator '!=' cannot be applied to operands of type 'long' and 'System.DBNull'.

DBNull is killing me. How does one reliably check if a nullable property contains no data?

share|improve this question
What about if (obj.MemberId.Equals(otherObj.MemberId)) return true; ? – Laurent Apr 9 '11 at 18:53

3 Answers

up vote 4 down vote accepted

Did you tried by using is operator?

if (obj.MemberId is DBNull)
{
    // it is null
    return false;
}
else
{
    // has some value
    return obj.MemberId == otherObj.MemberId;
}
share|improve this answer
Nope, lemme try it now... brb. – Chad Apr 9 '11 at 13:20
+1, but I'd suggest taking both objects into account in your DBNull test: if (obj.MemberId is DBNull || otherObj.MemberId is DBNull). Unless, of course, you want to consider two DBNulls as being equal, in which case it gets more complicated. – Frédéric Hamidi Apr 9 '11 at 13:24
@Chad, (@Frederic Hamidi) is right you also need to consider whether otherObj is DBNull, to avoid any exceptions that can occur. – Waqas Raja Apr 9 '11 at 13:27
Worked... thank you! Glad it was simple. ;) – Chad Apr 9 '11 at 13:28
Thank you Frederic for the heads up, in this case only one side is DBNull'able, but I'll keep that in mind. – Chad Apr 9 '11 at 13:29
show 2 more comments
if (!DBNull.Value.Equals(obj.MemberID) && obj.MemberID !=null && obj !=null)

or

if (!DBNull.Value.Equals(obj) && obj.MemberID !=null && obj !=null)

Select whatever applies to your case. This will give you a full proof check.

share|improve this answer

Just using Convert.IsDBNull should do.

http://msdn.microsoft.com/en-us/library/system.convert.isdbnull(v=VS.90).aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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