Méthode ExtensionMethods.FindNavigationProperty
Recherche une propriété de navigation avec le type et le nom spécifiés.
Espace de noms : Microsoft.Data.Edm
Assembly : Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function FindNavigationProperty ( _
type As IEdmEntityTypeReference, _
name As String _
) As IEdmNavigationProperty
'Utilisation
Dim type As IEdmEntityTypeReference
Dim name As String
Dim returnValue As IEdmNavigationProperty
returnValue = type.FindNavigationProperty(name)
public static IEdmNavigationProperty FindNavigationProperty(
this IEdmEntityTypeReference type,
string name
)
[ExtensionAttribute]
public:
static IEdmNavigationProperty^ FindNavigationProperty(
IEdmEntityTypeReference^ type,
String^ name
)
static member FindNavigationProperty :
type:IEdmEntityTypeReference *
name:string -> IEdmNavigationProperty
public static function FindNavigationProperty(
type : IEdmEntityTypeReference,
name : String
) : IEdmNavigationProperty
Paramètres
- type
Type : Microsoft.Data.Edm.IEdmEntityTypeReference
Référence à un type entité.
- name
Type : System.String
Nom de la propriété de navigation trouvée.
Valeur de retour
Type : Microsoft.Data.Edm.IEdmNavigationProperty
Propriété de navigation demandée.
Remarque relative à l'utilisation
En Visual Basic et C#, vous pouvez appeler cette méthode comme méthode d'instance sur tout objet de type IEdmEntityTypeReference. Lorsque vous utilisez la syntaxe de la méthode d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez https://msdn.microsoft.com/fr-fr/library/bb384936(v=vs.103) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=vs.103).