ItemCollection.GetFunctions Method
Get all the overloads of the function with the given name.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() ![]() | GetFunctions(Dictionary<String, ReadOnlyCollection<EdmFunction>>, String, Boolean) | Returns all the overloads of the functions by using the specified name from this item collection. |
![]() | GetFunctions(String) | Returns all the overloads of the functions by using the specified name from this item collection. |
![]() | GetFunctions(String, Boolean) | Returns all the overloads of the functions by using the specified name from this item collection. |
ItemCollection.GetFunctions Method (Dictionary<String, ReadOnlyCollection<EdmFunction>>, String, Boolean)
Returns all the overloads of the functions by using the specified name from this item collection.
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")] protected static ReadOnlyCollection<EdmFunction> GetFunctions( Dictionary<string, ReadOnlyCollection<EdmFunction>> functionCollection, string functionName, bool ignoreCase )
Parameters
- functionCollection
-
Type:
System.Collections.Generic.Dictionary<String, ReadOnlyCollection<EdmFunction>>
A dictionary of functions.
- functionName
-
Type:
System.String
The full name of the function.
- ignoreCase
-
Type:
System.Boolean
true to perform the case-insensitive search; otherwise, false.
Return Value
Type: System.Collections.ObjectModel.ReadOnlyCollection<EdmFunction>A collection of type ReadOnlyCollection that contains all the functions that have the specified name.
ItemCollection.GetFunctions Method (String)
Returns all the overloads of the functions by using the specified name from this item collection.
Parameters
- functionName
-
Type:
System.String
The full name of the function.
Return Value
Type: System.Collections.ObjectModel.ReadOnlyCollection<EdmFunction>A collection of type ReadOnlyCollection<T> that contains all the functions that have the specified name.
ItemCollection.GetFunctions Method (String, Boolean)
Returns all the overloads of the functions by using the specified name from this item collection.
public ReadOnlyCollection<EdmFunction> GetFunctions( string functionName, bool ignoreCase )
Parameters
- functionName
-
Type:
System.String
The full name of the function.
- ignoreCase
-
Type:
System.Boolean
true to perform the case-insensitive search; otherwise, false.
Return Value
Type: System.Collections.ObjectModel.ReadOnlyCollection<EdmFunction>A collection of type ReadOnlyCollection<T> that contains all the functions that have the specified name.