RelationshipManager.GetAllRelatedEnds Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Retorna uma enumeração de todas as extremidades relacionadas gerenciada pelo gerenciador de relacionamento.
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)
Retornos
Um IEnumerable<T> de objetos que implementam IRelatedEnd. Uma enumeração vazia é retornada quando os relacionamentos ainda não foram preenchidos.
Exemplos
Este exemplo adiciona novas SalesOrderHeader
entidades à Contact
entidade . Em seguida, ele obtém todas as extremidades relacionadas da entidade e exibe o Contact
nome da relação, o nome da função de origem e o nome da função de destino para cada extremidade relacionada,
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);
}
}
Comentários
O GetAllRelatedEnds método retorna uma enumeração de EntityCollection<TEntity> objetos e EntityReference<TEntity> . EntityCollection<TEntity> e EntityReference<TEntity> são tipos concretos que derivam de RelatedEnd. A RelatedEnd classe abstrata implementa a IRelatedEnd interface .