FunctionMappingExpression Constructor |
Namespace:
SD.LLBLGen.Pro.QuerySpec
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public FunctionMappingExpression(
Type methodDefiningType,
string methodName,
int numberOfParameters,
params Object[] parameters
)
Public Sub New (
methodDefiningType As Type,
methodName As String,
numberOfParameters As Integer,
ParamArray parameters As Object()
)
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