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?
a.b.cto, say,a == null ? null : (a.b == null ? null : a.b.c)– Dmitri Nesteruk Dec 16 '11 at 23:02