Condividi tramite


Metodo RelationshipManager.GetAllRelatedEnds

[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]

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

Spazio dei nomi:  System.Data.Entity.Core.Objects.DataClasses
Assembly:  EntityFramework (in EntityFramework.dll)

Sintassi

'Dichiarazione
<SuppressMessageAttribute("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")> _
Public Function GetAllRelatedEnds As IEnumerable(Of IRelatedEnd)
'Utilizzo
Dim instance As RelationshipManager 
Dim returnValue As IEnumerable(Of IRelatedEnd)

returnValue = instance.GetAllRelatedEnds()
[SuppressMessageAttribute("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
public IEnumerable<IRelatedEnd> GetAllRelatedEnds()
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1024:UsePropertiesWhereAppropriate")]
public:
IEnumerable<IRelatedEnd^>^ GetAllRelatedEnds()
[<SuppressMessageAttribute("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")>]
member GetAllRelatedEnds : unit -> IEnumerable<IRelatedEnd> 
public function GetAllRelatedEnds() : IEnumerable<IRelatedEnd>

Valore restituito

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

Vedere anche

Riferimento

RelationshipManager Classe

Spazio dei nomi System.Data.Entity.Core.Objects.DataClasses