共用方式為


ItemCollection.GetFunctions 方法

定義

多載

GetFunctions(String)

使用這個項目集合的指定名稱傳回函式的所有多載。

GetFunctions(String, Boolean)

使用這個項目集合的指定名稱傳回函式的所有多載。

GetFunctions(Dictionary<String,ReadOnlyCollection<EdmFunction>>, String, Boolean)

使用這個項目集合的指定名稱傳回函式的所有多載。

GetFunctions(String)

使用這個項目集合的指定名稱傳回函式的所有多載。

public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Entity.Core.Metadata.Edm.EdmFunction> GetFunctions (string functionName);
member this.GetFunctions : string -> System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Entity.Core.Metadata.Edm.EdmFunction>
Public Function GetFunctions (functionName As String) As ReadOnlyCollection(Of EdmFunction)

參數

functionName
String

函式的全名。

傳回

型別 ReadOnlyCollection<T> 的集合,其中包含所有具有指定名稱的函式。

適用於

GetFunctions(String, Boolean)

使用這個項目集合的指定名稱傳回函式的所有多載。

public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Entity.Core.Metadata.Edm.EdmFunction> GetFunctions (string functionName, bool ignoreCase);
member this.GetFunctions : string * bool -> System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Entity.Core.Metadata.Edm.EdmFunction>
Public Function GetFunctions (functionName As String, ignoreCase As Boolean) As ReadOnlyCollection(Of EdmFunction)

參數

functionName
String

函式的全名。

ignoreCase
Boolean

若要執行不區分大小寫的搜尋,則為 true,否則為 false。

傳回

型別 ReadOnlyCollection<T> 的集合,其中包含所有具有指定名稱的函式。

適用於

GetFunctions(Dictionary<String,ReadOnlyCollection<EdmFunction>>, String, Boolean)

使用這個項目集合的指定名稱傳回函式的所有多載。

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
protected static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Entity.Core.Metadata.Edm.EdmFunction> GetFunctions (System.Collections.Generic.Dictionary<string,System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Entity.Core.Metadata.Edm.EdmFunction>> functionCollection, string functionName, bool ignoreCase);
static member GetFunctions : System.Collections.Generic.Dictionary<string, System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Entity.Core.Metadata.Edm.EdmFunction>> * string * bool -> System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Entity.Core.Metadata.Edm.EdmFunction>
Protected Shared Function GetFunctions (functionCollection As Dictionary(Of String, ReadOnlyCollection(Of EdmFunction)), functionName As String, ignoreCase As Boolean) As ReadOnlyCollection(Of EdmFunction)

參數

functionCollection
Dictionary<String,ReadOnlyCollection<EdmFunction>>

函式的字典。

functionName
String

函式的全名。

ignoreCase
Boolean

若要執行不區分大小寫的搜尋,則為 true,否則為 false。

傳回

型別 ReadOnlyCollection 的集合,其中包含所有具有指定名稱的函式。

屬性

適用於