vote up 1 vote down star

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?

flag

78% accept rate
You don't explain what you want those `null`s to correspond to. Customers with no orders? – Pavel Minaev Jul 14 at 4:59

3 Answers

vote up 1 vote down check

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|flag
vote up 3 vote down

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|flag
Thank-you! This has stumped me for a while. Appreciate your answer. – dan Jul 14 at 4:56
vote up 0 vote down

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|flag
The select should be select (sr != null ? sr.OrderId : null); – Joe Chung Jul 14 at 7:24

Your Answer

Get an OpenID
or

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