DbInsertCommandTree コンストラクター
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
DbInsertCommandTree クラスの新しいインスタンスを初期化します。
名前空間: System.Data.Entity.Core.Common.CommandTrees
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Sub New ( _
metadata As MetadataWorkspace, _
dataSpace As DataSpace, _
target As DbExpressionBinding, _
setClauses As ReadOnlyCollection(Of DbModificationClause), _
returning As DbExpression _
)
'使用
Dim metadata As MetadataWorkspace
Dim dataSpace As DataSpace
Dim target As DbExpressionBinding
Dim setClauses As ReadOnlyCollection(Of DbModificationClause)
Dim returning As DbExpression
Dim instance As New DbInsertCommandTree(metadata, _
dataSpace, target, setClauses, returning)
public DbInsertCommandTree(
MetadataWorkspace metadata,
DataSpace dataSpace,
DbExpressionBinding target,
ReadOnlyCollection<DbModificationClause> setClauses,
DbExpression returning
)
public:
DbInsertCommandTree(
MetadataWorkspace^ metadata,
DataSpace dataSpace,
DbExpressionBinding^ target,
ReadOnlyCollection<DbModificationClause^>^ setClauses,
DbExpression^ returning
)
new :
metadata:MetadataWorkspace *
dataSpace:DataSpace *
target:DbExpressionBinding *
setClauses:ReadOnlyCollection<DbModificationClause> *
returning:DbExpression -> DbInsertCommandTree
public function DbInsertCommandTree(
metadata : MetadataWorkspace,
dataSpace : DataSpace,
target : DbExpressionBinding,
setClauses : ReadOnlyCollection<DbModificationClause>,
returning : DbExpression
)
パラメーター
- metadata
型 : System.Data.Entity.Core.Metadata.Edm.MetadataWorkspace
メタデータ。
- dataSpace
型 : System.Data.Entity.Core.Metadata.Edm.DataSpace
データ領域。
- target
型 : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding
対象のデータベース。
- setClauses
型 : System.Collections.ObjectModel.ReadOnlyCollection<DbModificationClause>
挿入された行の列の値を確認する set 句。
- returning
型 : System.Data.Entity.Core.Common.CommandTrees.DbExpression
変更された行に基づいて返される結果の投影を指定する DbExpression。