Click or drag to resize
FunctionMappingExpression Constructor
Initializes a new instance of the FunctionMappingExpression class.

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public FunctionMappingExpression(
	Type methodDefiningType,
	string methodName,
	int numberOfParameters,
	params Object[] parameters
)

Parameters

methodDefiningType
Type: SystemType
Type in which the method is defined. This is a .net type which is used for lookup in a FunctionMappingStore
methodName
Type: SystemString
Name of the method.
numberOfParameters
Type: SystemInt32
The number of parameters of the .NET method mapped in the FunctionMapping representeed.
parameters
Type: SystemObject
The parameters.
Remarks
The number of parameters specified in numberOfParameters can differ from the number of elements specified as parameters, as non-static .net methods mapped in the FunctionMappingStore have a lower parameter count defined.
See Also