Table of Contents

Interface ICacheGivingParser

Namespace
Rinku.Mapping.Parsers
Assembly
Rinku.dll

Records parameter settings and gets a parser that accepts the reader columns.

public interface ICacheGivingParser
Extension Methods

Properties

Behavior

Gets the reader behavior required by the parser.

CommandBehavior Behavior { get; }

Property Value

CommandBehavior

Methods

UpdateCache(IDbCommand, DbDataReader)

Updates the parser from a completed command and reader.

ITypeParser UpdateCache(IDbCommand cmd, DbDataReader reader)

Parameters

cmd IDbCommand
reader DbDataReader

Returns

ITypeParser

UpdateCacheAsync(IDbCommand, DbDataReader, CancellationToken)

Updates the parser asynchronously from a completed command and reader.

ValueTask<ITypeParser> UpdateCacheAsync(IDbCommand cmd, DbDataReader reader, CancellationToken ct = default)

Parameters

cmd IDbCommand
reader DbDataReader
ct CancellationToken

Returns

ValueTask<ITypeParser>