Méthode ExtensionMethods.FindVocabularyAnnotations<T> (IEdmModel, IEdmVocabularyAnnotatable, String)
Obtient les annotations du glossaire d'un élément annotable qui lient un terme particulier.
Espace de noms : Microsoft.Data.Edm
Assembly : Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function FindVocabularyAnnotations(Of T As IEdmVocabularyAnnotation) ( _
model As IEdmModel, _
element As IEdmVocabularyAnnotatable, _
termName As String _
) As IEnumerable(Of T)
'Utilisation
Dim model As IEdmModel
Dim element As IEdmVocabularyAnnotatable
Dim termName As String
Dim returnValue As IEnumerable(Of T)
returnValue = model.FindVocabularyAnnotations(element, _
termName)
public static IEnumerable<T> FindVocabularyAnnotations<T>(
this IEdmModel model,
IEdmVocabularyAnnotatable element,
string termName
)
where T : IEdmVocabularyAnnotation
[ExtensionAttribute]
public:
generic<typename T>
where T : IEdmVocabularyAnnotation
static IEnumerable<T>^ FindVocabularyAnnotations(
IEdmModel^ model,
IEdmVocabularyAnnotatable^ element,
String^ termName
)
static member FindVocabularyAnnotations :
model:IEdmModel *
element:IEdmVocabularyAnnotatable *
termName:string -> IEnumerable<'T> when 'T : IEdmVocabularyAnnotation
JScript ne prend pas en charge les types et les méthodes génériques.
Paramètres de type
- T
Type de l'annotation retournée.
Paramètres
- model
Type : Microsoft.Data.Edm.IEdmModel
Modèle dans lequel effectuer la recherche.
- element
Type : Microsoft.Data.Edm.IEdmVocabularyAnnotatable
Élément dont les annotations sont vérifiées.
- termName
Type : System.String
Nom du terme à rechercher.
Valeur de retour
Type : System.Collections.Generic.IEnumerable<T>
Annotations attachées à l'élément par ce modèle ou par les modèles référencés par ce modèle qui lient le terme.
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 IEdmModel. 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).