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

Is it possible to use LINQ to retrieve a list that may contain nulls.

For example if I have a left outer join like so:

var query=  from c in db.Customers
                join o in db.Orders
                   on c.CustomerID equals o.CustomerID into sr
                from x in sr.DefaultIfEmpty()
                select x.OrderId;

How do I get to a List that could look like {12,13,null,14,null,11,16,17}?

This doesn't work for me:

query.ToList<decimal?>();

Is it possible?

link|improve this question

You don't explain what you want those nulls to correspond to. Customers with no orders? – Pavel Minaev Jul 14 '09 at 4:59
feedback

3 Answers

up vote 1 down vote accepted

lc is correct, but it's a bit cleaner to simply cast your select to a nullable type outright.

var query=  from c in db.Customers
                join o in db.Orders
                   on c.CustomerID equals o.CustomerID into sr
                from x in sr.DefaultIfEmpty()
                select (decimal?)x.OrderId;
link|improve this answer
feedback

The problem is x.OrderId will throw a NullReferenceException when x is null. You need to check for null first, then return the property if there is an object. For example

select x == null ? (decimal?)null : x.OrderId;

OrderId doesn't quite sound like it ought to be a decimal though...

link|improve this answer
Thank-you! This has stumped me for a while. Appreciate your answer. – dan Jul 14 '09 at 4:56
feedback

Try:

var query
    = from c in db.Customers
        join o in db.Orders
        on c.CustomerID equals o.CustomerID into sr
        select (sr != null : sr.OrderId : null);
link|improve this answer
The select should be select (sr != null ? sr.OrderId : null); – Joe Chung Jul 14 '09 at 7:24
feedback

Your Answer

 
or
required, but never shown

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