Compartir a través de


RelationshipManager.GetAllRelatedEnds Método

Definición

Devuelve una enumeración de todos los extremos relacionados administrados por el administrador de relaciones.

public:
 System::Collections::Generic::IEnumerable<System::Data::Objects::DataClasses::IRelatedEnd ^> ^ GetAllRelatedEnds();
public System.Collections.Generic.IEnumerable<System.Data.Objects.DataClasses.IRelatedEnd> GetAllRelatedEnds ();
member this.GetAllRelatedEnds : unit -> seq<System.Data.Objects.DataClasses.IRelatedEnd>
Public Function GetAllRelatedEnds () As IEnumerable(Of IRelatedEnd)
Public Iterator Function GetAllRelatedEnds () As IEnumerable(Of IRelatedEnd)

Devoluciones

Una interfaz IEnumerable<T> de objetos que implementan IRelatedEnd. Si las relaciones todavía no están rellenas, se devuelve una enumeración vacía.

Ejemplos

En este ejemplo se agregan nuevas SalesOrderHeader entidades a la Contact entidad . A continuación, obtiene todos los extremos relacionados de la entidad y muestra el nombre de la Contact relación, el nombre del rol de origen y el nombre del rol de destino para cada extremo relacionado,

using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    Contact contact = new Contact();

    // Create a new SalesOrderHeader.
    SalesOrderHeader newSalesOrder1 = new SalesOrderHeader();
    // Add SalesOrderHeader to the Contact.
    contact.SalesOrderHeaders.Add(newSalesOrder1);

    // Create another SalesOrderHeader.
    SalesOrderHeader newSalesOrder2 = new SalesOrderHeader();
    // Add SalesOrderHeader to the Contact.
    contact.SalesOrderHeaders.Add(newSalesOrder2);

    // Get all related ends
    IEnumerable<IRelatedEnd> relEnds =
        ((IEntityWithRelationships)contact).RelationshipManager
        .GetAllRelatedEnds();

    foreach (IRelatedEnd relEnd in relEnds)
    {
        Console.WriteLine("Relationship Name: {0}", relEnd.RelationshipName);
        Console.WriteLine("Source Role Name: {0}", relEnd.SourceRoleName);
        Console.WriteLine("Target Role Name: {0}", relEnd.TargetRoleName);
    }
}

Comentarios

El GetAllRelatedEnds método devuelve una enumeración de EntityCollection<TEntity> objetos y EntityReference<TEntity> . EntityCollection<TEntity> y EntityReference<TEntity> son tipos concretos que derivan de RelatedEnd. La RelatedEnd clase abstracta implementa la IRelatedEnd interfaz .

Se aplica a