Click or drag to resize
DynamicParametersAdd Method (String, Object, NullableDbType, NullableParameterDirection, NullableInt32, NullableByte, NullableByte)
Add a parameter to this dynamic parameter list

Namespace: Dapper
Assembly: VirtualRadar.Database (in VirtualRadar.Database.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void Add(
	string name,
	Object value = null,
	Nullable<DbType> dbType = null,
	Nullable<ParameterDirection> direction = null,
	Nullable<int> size = null,
	Nullable<byte> precision = null,
	Nullable<byte> scale = null
)

Parameters

name
Type: SystemString
value (Optional)
Type: SystemObject
dbType (Optional)
Type: SystemNullableDbType
direction (Optional)
Type: SystemNullableParameterDirection
size (Optional)
Type: SystemNullableInt32
precision (Optional)
Type: SystemNullableByte
scale (Optional)
Type: SystemNullableByte
See Also