6 references to Delete
System.Data.Entity (6)
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (2)
324
PropagatorResult thisResult = (this.Operator == ModificationOperator.
Delete
? this.OriginalValues : this.CurrentValues);
325
PropagatorResult otherResult = (other.Operator == ModificationOperator.
Delete
? other.OriginalValues : other.CurrentValues);
System\Data\Mapping\Update\Internal\FunctionUpdateCommand.cs (1)
353
return ModificationOperator.
Delete
;
System\Data\Mapping\Update\Internal\UpdateCommandOrderer.cs (2)
229
ModificationOperator.
Delete
== command.Operator)
303
ModificationOperator.
Delete
== command.Operator)
System\Data\Mapping\Update\Internal\UpdateCompiler.cs (1)
69
UpdateCommand command = new DynamicUpdateCommand(processor, m_translator, ModificationOperator.
Delete
, oldRow, null, commandTree, null);