|
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.249-beta+56964f8aed6f3f2e54faec1539f7ce0ba6548fdf
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