ItemCollection.GetFunctions 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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 类型的集合,其中包含具有指定名称的所有函数。
- 属性