| LinqUtilsCreateDbFunctionCallAsLLBLExpression Method (Type, FunctionMapping, IRelationCollection, Object) | 
 
            Creates a new DbFunctionCall object and wraps it inside a LLBLGenProExpressionExpression object.
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic static LLBLGenProExpressionExpression CreateDbFunctionCallAsLLBLExpression(
	Type returnType,
	FunctionMapping mapping,
	IRelationCollection extraRelations,
	Object[] dbFunctionCallParameters
)
Public Shared Function CreateDbFunctionCallAsLLBLExpression ( 
	returnType As Type,
	mapping As FunctionMapping,
	extraRelations As IRelationCollection,
	dbFunctionCallParameters As Object()
) As LLBLGenProExpressionExpression
Parameters
- returnType
 - Type: SystemType
Type of the return value of the function. - mapping
 - Type: SD.LLBLGen.Pro.ORMSupportClassesFunctionMapping
The mapping. - extraRelations
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIRelationCollection
The extra relations. - dbFunctionCallParameters
 - Type: SystemObject
The db function call parameters. 
Return Value
Type: 
LLBLGenProExpressionExpression
            new DBFunctionCall object wrapped inside a LLBLGenProExpressionExpression object.
            
See Also