EntityObject.IEntityWithRelationships.RelationshipManager Property

Definition

Gets the relationship manager used by this object.

property System::Data::Objects::DataClasses::RelationshipManager ^ System::Data::Objects::DataClasses::IEntityWithRelationships::RelationshipManager { System::Data::Objects::DataClasses::RelationshipManager ^ get(); };
System.Data.Objects.DataClasses.RelationshipManager System.Data.Objects.DataClasses.IEntityWithRelationships.RelationshipManager { get; }
member this.System.Data.Objects.DataClasses.IEntityWithRelationships.RelationshipManager : System.Data.Objects.DataClasses.RelationshipManager
 ReadOnly Property RelationshipManager As RelationshipManager Implements IEntityWithRelationships.RelationshipManager

Property Value

The RelationshipManager used by this object.

Implements

Remarks

IEntityWithRelationships.RelationshipManager returns a RelationshipManager used by this object. Object Services uses the relationship manager to provide access to related objects.

Classes that expose relationships must implement this property by constructing and setting RelationshipManager in their constructor. The implementation of this property should use the static method Create to create a new RelationshipManager when needed. After being created, it is expected that this object will be stored on the entity and will be provided through this property.

Applies to

See also