ItemCollection.GetFunctions 方法 (Dictionary<String, ReadOnlyCollection<EdmFunction>>, String, Boolean)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
使用指定的名称从此项集合中返回所有函数重载。
命名空间: System.Data.Entity.Core.Metadata.Edm
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
Protected Shared Function GetFunctions ( _
functionCollection As Dictionary(Of String, ReadOnlyCollection(Of EdmFunction)), _
functionName As String, _
ignoreCase As Boolean _
) As ReadOnlyCollection(Of EdmFunction)
用法
Dim functionCollection As Dictionary(Of String, ReadOnlyCollection(Of EdmFunction))
Dim functionName As String
Dim ignoreCase As Boolean
Dim returnValue As ReadOnlyCollection(Of EdmFunction)
returnValue = ItemCollection.GetFunctions(functionCollection, _
functionName, ignoreCase)
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
protected static ReadOnlyCollection<EdmFunction> GetFunctions(
Dictionary<string, ReadOnlyCollection<EdmFunction>> functionCollection,
string functionName,
bool ignoreCase
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
protected:
static ReadOnlyCollection<EdmFunction^>^ GetFunctions(
Dictionary<String^, ReadOnlyCollection<EdmFunction^>^>^ functionCollection,
String^ functionName,
bool ignoreCase
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
static member GetFunctions :
functionCollection:Dictionary<string, ReadOnlyCollection<EdmFunction>> *
functionName:string *
ignoreCase:bool -> ReadOnlyCollection<EdmFunction>
protected static function GetFunctions(
functionCollection : Dictionary<String, ReadOnlyCollection<EdmFunction>>,
functionName : String,
ignoreCase : boolean
) : ReadOnlyCollection<EdmFunction>
参数
- functionCollection
类型:System.Collections.Generic.Dictionary<String, ReadOnlyCollection<EdmFunction>>
一个函数字典。
- functionName
类型:System.String
函数的全名。
- ignoreCase
类型:System.Boolean
如果执行不区分大小写的搜索,则为 true;否则为 false。
返回值
类型:System.Collections.ObjectModel.ReadOnlyCollection<EdmFunction>
一个 ReadOnlyCollection 类型的集合,其中包含具有指定名称的所有函数。