Table of Contents

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 IDbDataParameter

The 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 IDbDataParameter

The parameter to be updated.

value object

The value to set.