Click or drag to resize

DbFunctionCall Constructor (String, String, String,Object[])

Initializes a new instance of the DbFunctionCall class.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax
public DbFunctionCall(
	string catalogName,
	string schemaName,
	string functionName,
	Object[] parameters
)

Parameters

catalogName
Type: System.String
Name of the catalog.
schemaName
Type: System.String
Name of the schema.
functionName
Type: System.String
Name of the function or pre-formatted function call string.
parameters
Type:System.Object[]
The parameters for the function to call. Can be null (which means: no parameters)
See Also