Show / Hide Table of Contents

Interface ICommandBatchStep

Provides an interface for command batch steps.

Namespace: Paradigm.ORM.Data.Batching
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface ICommandBatchStep : IDisposable
Remarks

A command batch step represents a single command inside the the batch, and a result callback that will be called after the whole batchs is executed.

Properties

| Improve this Doc View Source

BatchResultCallback

Gets the batch result callback.

Declaration
Action<IDatabaseReader> BatchResultCallback { get; }
Property Value
Type Description
Action<IDatabaseReader>
| Improve this Doc View Source

BatchResultCallbackAsync

Gets the asynchronous batch result callback.

Declaration
Func<IDatabaseReader, Task> BatchResultCallbackAsync { get; }
Property Value
Type Description
Func<IDatabaseReader, Task>
| Improve this Doc View Source

Command

Gets the command.

Declaration
IDatabaseCommand Command { get; }
Property Value
Type Description
IDatabaseCommand

Extension Methods

ObjectExtensions.ThrowIfFails<TException>(Object, Action, String)
ObjectExtensions.ThrowIfFails<TException, TResult>(Object, Func<TResult>, String)
ObjectExtensions.ThrowIfFailsAsync<TException>(Object, Func<Task>, String)
ObjectExtensions.ThrowIfFailsAsync<TException, TResult>(Object, Func<Task<TResult>>, String)
  • Improve this Doc
  • View Source
Powered by MiracleDevs ©2017. Code licensed under the MIT License.
Documentation generated by DocFX.