Is it possible to get all related entities definitions for a entity. GetMemberEntityCollections returns all entities which are 1:N related but I also want the 1:1 related entities.
Try GetDependentRelatedEntities()
Which gets a collection of related entities referenced by this entity which this entity depends on (this entity is the FK side of their PK fields)
Walaa wrote: Try GetDependentRelatedEntities() Which gets a collection of related entities referenced by this entity which this entity depends on (this entity is the FK side of their PK fields)
Walaa wrote:
Hmmmm...I thought this wouldn't work for my situation but apparantly it does. Great
Keep in mind that these methods only work if the entities are already loaded.