In my application I use ADO.NET Entity Data Model for data access. I have the table categories (id, parentId, name, displayName). I want to access the children of a category. Does ADO.NET Entity Data Model support this behavior ... or I have to query manually each time? I would prefer to have the children in a List property that is lazy loaded.
Thanks,
Radu D