Click or drag to resize
GeneratorUtilsGetStoredProcedureParametersToWalk Method
Gets the stored procedure parameters to walk.

Namespace:  SD.LLBLGen.Pro.GeneratorCore
Assembly:  SD.LLBLGen.Pro.GeneratorCore (in SD.LLBLGen.Pro.GeneratorCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static IEnumerable<SPCallParameterDefinition> GetStoredProcedureParametersToWalk(
	bool noCursors,
	bool cursorsOnly,
	SPCallDefinition spCall,
	IGenerator executingGenerator
)

Parameters

noCursors
Type: SystemBoolean
if set to true, cursor parameters are filtered out
cursorsOnly
Type: SystemBoolean
if set to true, only cursor parameters are returned
spCall
Type: SD.LLBLGen.Pro.ApplicationCore.StoredProcedureCallsSPCallDefinition
The sp call.
executingGenerator
Type: SD.LLBLGen.Pro.ApplicationCoreIGenerator
The executing generator.

Return Value

Type: IEnumerableSPCallParameterDefinition
See Also