Sdílet prostřednictvím


DatabaseLogFormatter.Executing<TResult> Metoda

Definice

Volá se vždy, když se chystá provést příkaz. Výchozí implementace této metody filtruje podle DbContext nastavení do Context, pokud existuje, a pak volá LogCommand<TResult>(DbCommand, DbCommandInterceptionContext<TResult>). Tato metoda by obvykle byla přepsána pouze za účelem změny chování filtrování kontextu.

public virtual void Executing<TResult> (System.Data.Common.DbCommand command, System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext<TResult> interceptionContext);
abstract member Executing : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext<'Result> -> unit
override this.Executing : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext<'Result> -> unit
Public Overridable Sub Executing(Of TResult) (command As DbCommand, interceptionContext As DbCommandInterceptionContext(Of TResult))

Parametry typu

TResult

Typ výsledků operace

Parametry

command
DbCommand

Příkaz, který bude proveden.

interceptionContext
DbCommandInterceptionContext<TResult>

Kontextové informace přidružené k příkazu

Platí pro