|
DataExtensionsAddParameterWithValue Method
|
Creates and adds an IDbDataParameter to the IDbCommand object with the specified value.
Namespace: GSF.DataAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic static void AddParameterWithValue(
this IDbCommand command,
string name,
Object value,
ParameterDirection direction = ParameterDirection.Input
)
<ExtensionAttribute>
Public Shared Sub AddParameterWithValue (
command As IDbCommand,
name As String,
value As Object,
Optional direction As ParameterDirection = ParameterDirection.Input
)
public:
[ExtensionAttribute]
static void AddParameterWithValue(
IDbCommand^ command,
String^ name,
Object^ value,
ParameterDirection direction = ParameterDirection::Input
)
[<ExtensionAttribute>]
static member AddParameterWithValue :
command : IDbCommand *
name : string *
value : Object *
?direction : ParameterDirection
(* Defaults:
let _direction = defaultArg direction ParameterDirection.Input
*)
-> unit
GSF.Data.DataExtensions.AddParameterWithValue = function(command, name, value, direction);
View SourceParameters
- command IDbCommand
- IDbCommand to which parameter needs to be added.
- name String
- Name of the IDbDataParameter to be added.
- value Object
- Value of the IDbDataParameter to be added.
- direction ParameterDirection (Optional)
- ParameterDirection for IDbDataParameter.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IDbCommand. 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