3 instantiations of DynamicUpdateCommand
System.Data.Entity (3)
System\Data\Mapping\Update\Internal\UpdateCompiler.cs (3)
69
UpdateCommand command = new
DynamicUpdateCommand
(processor, m_translator, ModificationOperator.Delete, oldRow, null, commandTree, null);
131
UpdateCommand command = new
DynamicUpdateCommand
(processor, m_translator, ModificationOperator.Update, oldRow, newRow, commandTree, outputIdentifiers);
163
UpdateCommand command = new
DynamicUpdateCommand
(processor, m_translator, ModificationOperator.Insert, null, newRow, commandTree, outputIdentifiers);
6 references to DynamicUpdateCommand
System.Data.Entity (6)
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (2)
311
DynamicUpdateCommand
other = (
DynamicUpdateCommand
)otherCommand;
System\Data\Mapping\Update\Internal\UpdateCommandOrderer.cs (4)
194
foreach (
DynamicUpdateCommand
command in this.Vertices.OfType<
DynamicUpdateCommand
>())
277
foreach (
DynamicUpdateCommand
command in this.Vertices.OfType<
DynamicUpdateCommand
>())