DbFunctionCall Constructor (String, String, String,Object[]) |
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.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: 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