I've been working with EF for a while, and while I find it great, there's something that struggles my mind.
Let's say I'm talking about the classic Order / OrderDetails relationship. DbContext generated and everything. Among other properties, I have a navigation property ICollection OrderDetails inside class Order.
Now, why there is no clean way to use that navigation property as an IQueryable property? That way, I could make something like this with good performance, running the WHERE on SQL side:
var argDetails = order.OrderDetails.Where(d => d.Active==true);
or even...
order.OrderDetails.Count();
Instead, this fetches all the related Details into memory and filters/counts using EntityToObjects...
Totally not performant.
Any good reason behind this?
Thanks
IQueryable
is an abstraction of the database query, but the features provided byIQueryable
are dependent on the provider and that makes it a leaky abstraction. Many advocate thatIQueryable
shouldn't get out of the data layer: Using the repository pattern to support multiple providersMost developers are striving to keep POCO's unpolluted by dependencies. Foreign keys and virtual methods are a compromise that most people will put up with but
IQueryable
is probably a step too far.You can vote for filtered includes here: Allow filtering for Include extension method
References:
Foreign key properties in domain entities