DynamicParametersAdd Method (String, Object, NullableDbType, NullableParameterDirection, NullableInt32) |
Add a parameter to this dynamic parameter list
Namespace: DapperAssembly: VirtualRadar.Database (in VirtualRadar.Database.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public void Add(
string name,
Object value,
Nullable<DbType> dbType,
Nullable<ParameterDirection> direction,
Nullable<int> size
)
Public Sub Add (
name As String,
value As Object,
dbType As Nullable(Of DbType),
direction As Nullable(Of ParameterDirection),
size As Nullable(Of Integer)
)
public:
void Add(
String^ name,
Object^ value,
Nullable<DbType> dbType,
Nullable<ParameterDirection> direction,
Nullable<int> size
)
member Add :
name : string *
value : Object *
dbType : Nullable<DbType> *
direction : Nullable<ParameterDirection> *
size : Nullable<int> -> unit
Parameters
- name
- Type: SystemString
- value
- Type: SystemObject
- dbType
- Type: SystemNullableDbType
- direction
- Type: SystemNullableParameterDirection
- size
- Type: SystemNullableInt32
See Also