ExtensionMethods.FindVocabularyAnnotations<T> 方法 (IEdmModel, IEdmVocabularyAnnotatable, IEdmTerm, 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, _
term As IEdmTerm, _
qualifier As String _
) As IEnumerable(Of T)
'用途
Dim model As IEdmModel
Dim element As IEdmVocabularyAnnotatable
Dim term As IEdmTerm
Dim qualifier As String
Dim returnValue As IEnumerable(Of T)
returnValue = model.FindVocabularyAnnotations(element, _
term, qualifier)
public static IEnumerable<T> FindVocabularyAnnotations<T>(
this IEdmModel model,
IEdmVocabularyAnnotatable element,
IEdmTerm term,
string qualifier
)
where T : IEdmVocabularyAnnotation
[ExtensionAttribute]
public:
generic<typename T>
where T : IEdmVocabularyAnnotation
static IEnumerable<T>^ FindVocabularyAnnotations(
IEdmModel^ model,
IEdmVocabularyAnnotatable^ element,
IEdmTerm^ term,
String^ qualifier
)
static member FindVocabularyAnnotations :
model:IEdmModel *
element:IEdmVocabularyAnnotatable *
term:IEdmTerm *
qualifier:string -> IEnumerable<'T> when 'T : IEdmVocabularyAnnotation
JScript 不支援泛型型別及方法。
型別參數
- T
所要傳回之註釋的型別。
參數
- model
型別:Microsoft.Data.Edm.IEdmModel
要搜尋的模型。
- element
型別:Microsoft.Data.Edm.IEdmVocabularyAnnotatable
要檢查是否有註釋的元素。
- term
型別:Microsoft.Data.Edm.IEdmTerm
要搜尋的字詞。
- qualifier
型別:System.String
要套用的限定詞。
傳回值
型別:System.Collections.Generic.IEnumerable<T>
此模型或此模型所參考之模型附加至元素且以給定限定詞繫結該字詞的註釋。
使用注意事項
在 Visual Basic 及 C# 中,您可以在任何型別 IEdmModel 的物件上將這個方法做為執行個體方法呼叫。使用執行個體方法語法呼叫這個方法時,請省略第一個參數。如需詳細資訊,請參閱 https://msdn.microsoft.com/zh-tw/library/bb384936(v=vs.103) 或 https://msdn.microsoft.com/zh-tw/library/bb383977(v=vs.103)。