Selective eager loading in Entity Framework
- by Ofer
Hello,
Is it possible to limit the number of associated entities eagerly loaded with Include?
e.g.
I have Author and Book entities with a many-to-one relation
I'd like to load all authors and their last book
Thanks.