RelationshipManager.GetAllRelatedEnds Metodo

Definizione

Restituisce un'enumerazione di tutte le entità finali correlate gestite dal gestore delle relazioni.

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)

Restituisce

IEnumerable<T> di oggetti che implementano IRelatedEnd. Quando le relazioni non sono state ancora popolate, viene restituita un'enumerazione vuota.

Esempio

In questo esempio vengono aggiunte nuove SalesOrderHeader entità all'entità Contact . Ottiene quindi tutte le estremità correlate dall'entità Contact e visualizza il nome della relazione, il nome del ruolo di origine e il nome del ruolo di destinazione per ogni fine correlata,

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);
    }
}

Commenti

Il GetAllRelatedEnds metodo restituisce un'enumerazione di EntityCollection<TEntity> e EntityReference<TEntity> oggetti. EntityCollection<TEntity> e EntityReference<TEntity> sono tipi concreti che derivano da RelatedEnd. La RelatedEnd classe astratta implementa l'interfaccia IRelatedEnd .

Si applica a