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
所返回的批注的类型。
参数
- model
类型:Microsoft.Data.Edm.IEdmModel
要搜索的模型。
- element
类型:Microsoft.Data.Edm.IEdmVocabularyAnnotatable
要检查批注的元素。
- termName
类型:System.String
要搜索的术语的名称。
返回值
类型: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)。