If I, within a Linq where clause, Have a long list of objects that each has the possibility of returning null. Something like this.

 SomeSource.Where(srcItem=>(srcItem.DataMembers["SomeText"].Connection.ConnectedTo as Type1).Handler.ForceInvocation == true));

The indexer can return null, the "as" operator may return null. It is possible that the object does not have a connection (ie. The property is null). If a null is encountered anywhere, I would like the where clause to return "false" for the item being evaluated. Instead, it aborts with a null reference exception.

It appears to me that this would be contrived to express within a single C# expression. I don't like to create a multi line statement or create a separate func for it. Is there some use of the null coalescing operator that I'm missing?

link|improve this question

73% accept rate
This would be a really nice feature – nw. Jun 9 '11 at 0:37
One option is to create a VS helper action which would simply expand a.b.c to, say, a == null ? null : (a.b == null ? null : a.b.c) – Dmitri Nesteruk Dec 16 '11 at 23:02
feedback

3 Answers

up vote 2 down vote accepted

You're looking for the .? operator (or is it ?.—one of those, anyway), which does not exist in C# (though it is an often-requested feature, according to Eric Lippert).

The only possible suggestion I have is to write a method that takes an expression and uses it to check for any nulls. But this will come at a performance cost. Anyway, it might look like:

T TryOrDefault<T>(Expression<Func<T>> expression)
{
    // Check every MemberExpression within expression one by one,
    // looking for any nulls along the way.

    // If a null is found, return default(T) or some default value.

    // Otherwise...
    Func<T> func = expression.Compile();
    return func();
}
link|improve this answer
I would imagine that it's probably quicker to just pass a Func<T>, wrap the invocation in a try ... catch (NullReferenceException) block and take it from there. Admittedly I haven't benchmarked this, and it feels dirty, but I suspect it would be faster, in general, than parsing, compiling and then invoking an Expression<Func<T>> every time. – LukeH Feb 10 '11 at 16:36
@LukeH: You're probably right. What I have seen done which might make some sense is taking an Expression<Func<T, TResult>> and from that compiling a Func<T, bool> which will perform a one-by-one null check for every member. This Func<T, bool> can then be reused wherever you want to avoid having to type if (x != null && x.Property != null), etc. for a particular type. – Dan Tao Feb 10 '11 at 16:45
You stroke my geek, sir. An expression tree visitor that introduces null checks. And then Func.Compiles it. I will actually consider this. Time to get a ROI on the time spent reading Jon Skeets "C# in depth". – Tormod Feb 11 '11 at 8:01
After a second glance, suddenly I understand the first line. MyObject?.Method1(SomePar):false; – Tormod Feb 11 '11 at 10:47
feedback

Using the andand operator from Ruby as inspiration, you could create an extension method that acts as a null guard.

public static U AndAnd<T, U>(this T obj, Func<T, U> func)
{
    return obj == null ? default(U) : func(obj);
}

Your original code could then be rewritten as follows:

SomeSource.Where(srcItem => (srcItem.AndAnd(val => val.DataMembers["SomeText"]).AndAnd(val => val.Connection).AndAnd(val => val.ConnectedTo) as Type1).AndAnd(val => val.Handler).AndAnd(val => val.ForceInvocation));

Do be careful when returning non-boolean value types using this method - make sure you are familiar with the values returned by default(U).

link|improve this answer
1  
Job security FTW!! That was a delightful puzzle, but the end result, ie the way I eventually would be able to express it, wasn't exactly what I was looking for. Thank you, anyway. – Tormod Feb 11 '11 at 8:06
1  
@Tormod Your comment made me LOL. +1 – Chris Shouts Feb 11 '11 at 14:09
feedback

create a separate func for it

This is the way to go. Do not be allergic to proper techniques. Methods you create are no more expensive (at runtime, and conceptually) than anonymous methods.

link|improve this answer
Perhaps that came out wrong. The performance differenece is wether or not to handle the null reference exception (for performance/scalability reasons) or a bunch of null checks (regardless of their wrapping). But my gut difference is that it is wrong to be unduly explicit about the many ways in which a specific condition can be false when there is only one way it can be true. – Tormod Feb 11 '11 at 7:57
feedback

Your Answer

 
or
required, but never shown

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