次の方法で共有


DbParameterLogData コンストラクター

定義

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

public DbParameterLogData (string name, object value, bool hasValue, System.Data.ParameterDirection direction, System.Data.DbType dbType, bool nullable, int size, byte precision, byte scale);
new Microsoft.EntityFrameworkCore.Storage.DbParameterLogData : string * obj * bool * System.Data.ParameterDirection * System.Data.DbType * bool * int * byte * byte -> Microsoft.EntityFrameworkCore.Storage.DbParameterLogData
Public Sub New (name As String, value As Object, hasValue As Boolean, direction As ParameterDirection, dbType As DbType, nullable As Boolean, size As Integer, precision As Byte, scale As Byte)

パラメーター

name
String

パラメーターの名前。

value
Object

パラメーターの値。

hasValue
Boolean

パラメーターに値があるかどうかを示す値 (または null が割り当てられます)。

direction
ParameterDirection

パラメーターの方向。

dbType
DbType

パラメーターの型。

nullable
Boolean

パラメーターの型が null 許容かどうかを示す値。

size
Int32

パラメーターの型のサイズ。

precision
Byte

パラメーターの型の有効桁数。

scale
Byte

パラメーターの型のスケール。

適用対象