Monday, 2 September 2013

Linq to Entity having more than one where conditions

Linq to Entity having more than one where conditions

How can I check for more than one condition in the where clause of LINQ to
Entities?
How can I check if the value is false or null
.Where(p => (p.Disabled == false || p.Disabled = null));

No comments:

Post a Comment