ExtensionMethods.FindVocabularyAnnotations<T> 方法 (IEdmModel, IEdmVocabularyAnnotatable, String)

获取绑定特定术语的可批注元素的词汇批注。

命名空间:  Microsoft.Data.Edm
程序集:  Microsoft.Data.Edm(在 Microsoft.Data.Edm.dll 中)

语法

声明
<ExtensionAttribute> _
Public Shared Function FindVocabularyAnnotations(Of T As IEdmVocabularyAnnotation) ( _
    model As IEdmModel, _
    element As IEdmVocabularyAnnotatable, _
    termName As String _
) As IEnumerable(Of T)
用法
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 不支持一般类型和方法。

类型参数

  • T
    所返回的批注的类型。

参数

返回值

类型:System.Collections.Generic.IEnumerable<T>
通过此模型或此模型所引用的绑定该术语的模型附加到元素的批注。

用法说明

在 Visual Basic 和 C# 中,您可以对 IEdmModel 类型的任何对象将此方法作为实例方法调用。在您使用实例方法语法调用此方法时,将忽略第一个参数。有关详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/bb384936(v=vs.103)https://msdn.microsoft.com/zh-cn/library/bb383977(v=vs.103)

请参阅

参考

ExtensionMethods 类

FindVocabularyAnnotations 重载

Microsoft.Data.Edm 命名空间