DbFunctionCall Constructor (String, String, String, Object) | 
  
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.12.0.0 (5.12.0)
Syntaxpublic DbFunctionCall(
	string catalogName,
	string schemaName,
	string functionName,
	Object[] parameters
)
Public Sub New ( 
	catalogName As String,
	schemaName As String,
	functionName As String,
	parameters As Object()
)
Parameters
- catalogName
 - Type: SystemString
Name of the catalog. - schemaName
 - Type: SystemString
Name of the schema. - functionName
 - Type: SystemString
Name of the function or pre-formatted function call string. - parameters
 - Type: SystemObject
The parameters for the function to call. Can be null (which means: no parameters) 
See Also