Interface IDataParameterHandler
- Namespace
- FluentCommand
- Assembly
- FluentCommand.dll
An interface defining parameter type handling
public interface IDataParameterHandler
Properties
ValueType
Gets the type of the value to handle.
Type ValueType { get; }
Property Value
- Type
The type of the value to handle.
Methods
ReadValue(IDbDataParameter)
Read the value from the specified parameter
.
object ReadValue(IDbDataParameter parameter)
Parameters
parameter
IDbDataParameterThe parameter to read the value from.
Returns
- object
The value read from the
parameter
SetValue(IDbDataParameter, object)
Set the value on the specified parameter
.
void SetValue(IDbDataParameter parameter, object value)
Parameters
parameter
IDbDataParameterThe parameter to be updated.
value
objectThe value to set.