I have an element bound to an entity (Contact) that exposes some navigation properties.
I want, that on some action (i.e. a "Load children" button), the Contact should load for all its children and grand children like I can do with an ObjectQuery.Include before the execution; example (pseudo):
DirectCast(element.DataContext, Contact).SubContacts. _
Include("Address.State"). _
Load()
I want to be able to shape the results also by reloading items like the example above, not only when querying the model itself.
I think this should of been a part of Entity-Framework in some way.