ExtensionMethods.FindVocabularyAnnotations Method (IEdmModel, IEdmVocabularyAnnotatable)
Gets an annotatable element's vocabulary annotations defined in a specific model and models referenced by that model.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function FindVocabularyAnnotations ( _
model As IEdmModel, _
element As IEdmVocabularyAnnotatable _
) As IEnumerable(Of IEdmVocabularyAnnotation)
'Usage
Dim model As IEdmModel
Dim element As IEdmVocabularyAnnotatable
Dim returnValue As IEnumerable(Of IEdmVocabularyAnnotation)
returnValue = model.FindVocabularyAnnotations(element)
public static IEnumerable<IEdmVocabularyAnnotation> FindVocabularyAnnotations(
this IEdmModel model,
IEdmVocabularyAnnotatable element
)
[ExtensionAttribute]
public:
static IEnumerable<IEdmVocabularyAnnotation^>^ FindVocabularyAnnotations(
IEdmModel^ model,
IEdmVocabularyAnnotatable^ element
)
static member FindVocabularyAnnotations :
model:IEdmModel *
element:IEdmVocabularyAnnotatable -> IEnumerable<IEdmVocabularyAnnotation>
public static function FindVocabularyAnnotations(
model : IEdmModel,
element : IEdmVocabularyAnnotatable
) : IEnumerable<IEdmVocabularyAnnotation>
Parameters
- model
Type: Microsoft.Data.Edm.IEdmModel
The model to search.
- element
Type: Microsoft.Data.Edm.IEdmVocabularyAnnotatable
The element to check for annotations.
Return Value
Type: System.Collections.Generic.IEnumerable<IEdmVocabularyAnnotation>
The annotations attached to the element by this model or by models referenced by this model.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmModel. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).