ItemCollection.GetFunctions Method

 

Get all the overloads of the function with the given name.

Namespace:   System.Data.Entity.Core.Metadata.Edm
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_protmethodSystem_CAPS_staticGetFunctions(Dictionary<String, ReadOnlyCollection<EdmFunction>>, String, Boolean)

Returns all the overloads of the functions by using the specified name from this item collection.

System_CAPS_pubmethodGetFunctions(String)

Returns all the overloads of the functions by using the specified name from this item collection.

System_CAPS_pubmethodGetFunctions(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.

public ReadOnlyCollection<EdmFunction> GetFunctions(
	string functionName
)

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.