DynamicQueryEngineCreateStoredProcedureCommand Method  | 
 
            Creates a DbCommand which is ready to be used to call the stored procedure specified. 
            
 
    Namespace: 
   SD.LLBLGen.Pro.DQE.PostgreSql
    Assembly:
   SD.LLBLGen.Pro.DQE.PostgreSql (in SD.LLBLGen.Pro.DQE.PostgreSql.dll) Version: 5.12.0.0 (5.12.0)
Syntaxpublic override DbCommand CreateStoredProcedureCommand(
	string storedProcedureToCall,
	DbParameter[] parameters
)
Public Overrides Function CreateStoredProcedureCommand ( 
	storedProcedureToCall As String,
	parameters As DbParameter()
) As DbCommand
Parameters
- storedProcedureToCall
 - Type: SystemString
Stored procedure to call. This name has to be setup correctly with the proper schema/catalog name overwrites
            and catalog/schema/name wrapping characters. - parameters
 - Type: System.Data.CommonDbParameter
array of parameters to specify 
Return Value
Type: 
DbCommandDbCommand setup for calling the stored procedure, using the parameters specified. No connection nor timeout nor transaction has been
            setup yet for this DbCommand.
See Also