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