EntityParameter コンストラクター (String, DbType, Int32, ParameterDirection, Boolean, Byte, Byte, String, DataRowVersion, Object)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
指定したプロパティを使用して、EntityParameter クラスの新しいインスタンスを初期化します。
名前空間: System.Data.Entity.Core.EntityClient
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
<SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")> _
Public Sub New ( _
parameterName As String, _
dbType As DbType, _
size As Integer, _
direction As ParameterDirection, _
isNullable As Boolean, _
precision As Byte, _
scale As Byte, _
sourceColumn As String, _
sourceVersion As DataRowVersion, _
value As Object _
)
'使用
Dim parameterName As String
Dim dbType As DbType
Dim size As Integer
Dim direction As ParameterDirection
Dim isNullable As Boolean
Dim precision As Byte
Dim scale As Byte
Dim sourceColumn As String
Dim sourceVersion As DataRowVersion
Dim value As Object
Dim instance As New EntityParameter(parameterName, _
dbType, size, direction, isNullable, _
precision, scale, sourceColumn, sourceVersion, _
value)
[SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public EntityParameter(
string parameterName,
DbType dbType,
int size,
ParameterDirection direction,
bool isNullable,
byte precision,
byte scale,
string sourceColumn,
DataRowVersion sourceVersion,
Object value
)
[SuppressMessageAttribute(L"Microsoft.Usage", L"CA2214:DoNotCallOverridableMethodsInConstructors")]
public:
EntityParameter(
String^ parameterName,
DbType dbType,
int size,
ParameterDirection direction,
bool isNullable,
unsigned char precision,
unsigned char scale,
String^ sourceColumn,
DataRowVersion sourceVersion,
Object^ value
)
[<SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")>]
new :
parameterName:string *
dbType:DbType *
size:int *
direction:ParameterDirection *
isNullable:bool *
precision:byte *
scale:byte *
sourceColumn:string *
sourceVersion:DataRowVersion *
value:Object -> EntityParameter
public function EntityParameter(
parameterName : String,
dbType : DbType,
size : int,
direction : ParameterDirection,
isNullable : boolean,
precision : byte,
scale : byte,
sourceColumn : String,
sourceVersion : DataRowVersion,
value : Object
)
パラメーター
- parameterName
型 : System.String
パラメーターの名前。
- dbType
型 : System.Data.DbType
DbType 値のいずれか。
- size
型 : System.Int32
パラメーターのサイズ。
- direction
型 : System.Data.ParameterDirection
ParameterDirection 値のいずれか。
- isNullable
型 : System.Boolean
パラメーターが NULL 値を受け取る場合は true、それ以外の場合は false。
- precision
型 : System.Byte
値を表すために使う桁数。
- scale
型 : System.Byte
value が解決される、小数点以下の桁数。
- sourceColumn
型 : System.String
ソース列の名前。
- sourceVersion
型 : System.Data.DataRowVersion
DataRowVersion 値のいずれか。
- value
型 : System.Object
パラメーターの値。