DbConnectionPlus API Documentation
Search Results for

    Show / Hide Table of Contents

    Delegate InterceptDbCommand

    A delegate for intercepting database commands executed via DbConnectionPlus.

    Namespace: RentADeveloper.DbConnectionPlus.Configuration
    Assembly: RentADeveloper.DbConnectionPlus.dll
    Syntax
    public delegate void InterceptDbCommand(DbCommand dbCommand, IReadOnlyList<InterpolatedTemporaryTable> temporaryTables)
    Parameters
    Type Name Description
    DbCommand dbCommand

    The database command being executed.

    IReadOnlyList<InterpolatedTemporaryTable> temporaryTables

    The temporary tables created for the command.

    Constructors

    View Source

    InterceptDbCommand(object, nint)

    Declaration
    public InterceptDbCommand(object @object, nint method)
    Parameters
    Type Name Description
    object object
    nint method

    Methods

    View Source

    BeginInvoke(DbCommand, IReadOnlyList<InterpolatedTemporaryTable>, AsyncCallback, object)

    Declaration
    public virtual IAsyncResult BeginInvoke(DbCommand dbCommand, IReadOnlyList<InterpolatedTemporaryTable> temporaryTables, AsyncCallback callback, object @object)
    Parameters
    Type Name Description
    DbCommand dbCommand
    IReadOnlyList<InterpolatedTemporaryTable> temporaryTables
    AsyncCallback callback
    object object
    Returns
    Type Description
    IAsyncResult
    View Source

    EndInvoke(IAsyncResult)

    Declaration
    public virtual void EndInvoke(IAsyncResult result)
    Parameters
    Type Name Description
    IAsyncResult result
    View Source

    Invoke(DbCommand, IReadOnlyList<InterpolatedTemporaryTable>)

    Declaration
    public virtual void Invoke(DbCommand dbCommand, IReadOnlyList<InterpolatedTemporaryTable> temporaryTables)
    Parameters
    Type Name Description
    DbCommand dbCommand
    IReadOnlyList<InterpolatedTemporaryTable> temporaryTables
    • View Source
    In this article
    Back to top Generated by DocFX