vote up 0 vote down star

I am getting a NullReferenceException when I try and convert the following LINQ to EF query. What could be wrong here?

            List<DailyProductionRecord> prodRecs = new List<DailyProductionRecord>();
            var recs = from p in productionEntities.DailyProductionRecordSet
                       where ((p.Department.DeptId == dept.DeptId) && (p.RecordDate >= thisPeriodStart) && (p.RecordDate < nextPeriodStart))
                       select p;
            prodRecs = recs.ToList();

EDIT: I've just discovered I was too quick off the mark, and my dept criterion was null.

flag

72% accept rate

2 Answers

vote up 1 vote down check

Is p.Department can be null?

link|flag
Not quite, but dept is null. Close enough. – ProfK Nov 8 at 13:05
vote up 0 vote down

Aside from accessing properties on objects that can be null (p.Department and dept can both be null), you are also instantiating a new List<DailyProductionRecord> that never gets used. So your example can be written like this:

List<DailyProductionRecord> prodRecs = (from p in productionEntities.DailyProductionRecordSet
                                        where ((p.Department.DeptId == dept.DeptId) && (p.RecordDate >= thisPeriodStart) && (p.RecordDate < nextPeriodStart))
                                        select p).ToList();
link|flag
Thanks @Ronald, but that's how I started off. If was just decomposing this when I used the extra list. – ProfK Nov 8 at 13:41

Your Answer

Get an OpenID
or

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