Click or drag to resize

DataExtensionsPopulateParameters(SqlCommand, Object, Object) Method

Takes the SqlCommand object and populates it with the given parameters.

Namespace: GSF.Data
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.260-beta+76c7c6cf0c1396b9d31fa51bf4853b8ac963cce8
Syntax
public static void PopulateParameters(
	this SqlCommand command,
	Object parameter1,
	params Object[] parameters
)
View Source

Parameters

command  SqlCommand
The SqlCommand whose parameters are to be populated.
parameter1  Object
The first parameter value to populate the SqlCommand parameters with.
parameters  Object
The remaining parameter values to populate the SqlCommand parameters with.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SqlCommand. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also