次の方法で共有


DbCommandLogData コンストラクター

定義

DbParameterLogData クラスの新しいインスタンスを初期化します。

public DbCommandLogData (string commandText, System.Data.CommandType commandType, int commandTimeout, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.DbParameterLogData> parameters, long? elapsedMilliseconds);
new Microsoft.EntityFrameworkCore.Storage.DbCommandLogData : string * System.Data.CommandType * int * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.DbParameterLogData> * Nullable<int64> -> Microsoft.EntityFrameworkCore.Storage.DbCommandLogData
Public Sub New (commandText As String, commandType As CommandType, commandTimeout As Integer, parameters As IReadOnlyList(Of DbParameterLogData), elapsedMilliseconds As Nullable(Of Long))

パラメーター

commandText
String

実行中のコマンド テキスト。

commandType
CommandType

実行されるコマンドの種類。

commandTimeout
Int32

コマンドに対して構成されたタイムアウト。

parameters
IReadOnlyList<DbParameterLogData>

コマンドのパラメーター。

elapsedMilliseconds
Nullable<Int64>

コマンドの実行にかかった時間 (完了した場合)。

適用対象