Click or drag to resize
DynamicParameters.Add Method (String, Object, Nullable<DbType>, Nullable<ParameterDirection>, Nullable<Int32>, Nullable<Byte>, Nullable<Byte>)
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: System.String
value (Optional)
Type: System.Object
dbType (Optional)
Type: System.Nullable<DbType>
direction (Optional)
Type: System.Nullable<ParameterDirection>
size (Optional)
Type: System.Nullable<Int32>
precision (Optional)
Type: System.Nullable<Byte>
scale (Optional)
Type: System.Nullable<Byte>
See Also