IRelatedEnd Interface
Defines the end of a relationship.
Assembly: System.Data.Entity (in System.Data.Entity.dll)
| Name | Description | |
|---|---|---|
![]() | IsLoaded | Gets a value that indicates whether all related objects have been loaded. |
![]() | RelationshipName | Gets the name of the relationship in which this related end participates. |
![]() | RelationshipSet | Returns a reference to the metadata for the related end. |
![]() | SourceRoleName | Gets the role name at the source end of the relationship. |
![]() | TargetRoleName | Gets the role name at the target end of the relationship. |
| Name | Description | |
|---|---|---|
![]() | Add(IEntityWithRelationships^) | Adds an object to the related end. |
![]() | Add(Object^) | Adds an object to the related end. |
![]() | Attach(IEntityWithRelationships^) | Defines a relationship between two attached objects. |
![]() | Attach(Object^) | Defines a relationship between two attached objects. |
![]() | CreateSourceQuery() | Returns an IEnumerable that represents the objects that belong to the related end. |
![]() | GetEnumerator() | Returns an IEnumerator that iterates through the collection of related objects. |
![]() | Load() | Loads the related object or objects into this related end with the default merge option. |
![]() | Load(MergeOption) | Loads the related object or objects into the related end with the specified merge option. |
![]() | Remove(IEntityWithRelationships^) | Removes an object from the collection of objects at the related end. |
![]() | Remove(Object^) | Removes an object from the collection of objects at the related end. |
IRelatedEnd defines the requirements for an object that represents an end in an association. This interface is implemented by the RelatedEnd class. RelatedEnd is the base class for the EntityCollection<TEntity> and EntityReference<TEntity> classes.
The example in this topic is based on the AdventureWorks Sales Model, which was generated by the Entity Data Model Wizard.
The following example adds new SalesOrderHeader entities to the Contact entity. Then it gets all related ends from the Contact entity and displays relationship name, source role name, and target role name for each related end.
Available since 3.5

