I have a Category entity which has a Nullable ParentId field. When the method below is executing and the categoryId is null, the result seems null however there are categories which has null ParentId value.
What is the problem in here, what am I missing?
public IEnumerable<ICategory> GetSubCategories(long? categoryId) { var subCategories = this.Repository.Categories.Where(c => c.ParentId == categoryId) .ToList().Cast<ICategory>(); return subCategories; }
By the way, when I change the condition to (c.ParentId == null), result seems normal.
The first thing to do is to put on logging, to see what TSQL was generated; for example:
LINQ-to-SQL seems to treat nulls a little inconsistently (depending on literal vs value):
So all I can suggest is use the top form with nulls!
i.e.
Update – I got it working ‘properly’ using a custom
Expression: