RelationshipManager.GetAllRelatedEnds Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zwraca wyliczenie wszystkich powiązanych końców zarządzanych przez menedżera relacji.
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)
Zwraca
Obiekt IEnumerable<T> implementujący IRelatedEndobiekt . Puste wyliczenie jest zwracane, gdy relacje nie zostały jeszcze wypełnione.
Przykłady
W tym przykładzie Contact
dodano nowe SalesOrderHeader
jednostki do jednostki. Następnie pobiera wszystkie powiązane końce z Contact
jednostki i wyświetla nazwę relacji, nazwę roli źródłowej i nazwę roli docelowej dla każdego powiązanego końca,
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);
}
}
Uwagi
Metoda GetAllRelatedEnds zwraca wyliczenie EntityCollection<TEntity> obiektów i EntityReference<TEntity> . EntityCollection<TEntity> i EntityReference<TEntity> są konkretnymi typami pochodzącymi z RelatedEndklasy . Klasa abstrakcyjna RelatedEnd implementuje IRelatedEnd interfejs.