16 references to Operator
System.Data.Entity (16)
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (4)
314
int result = (int)this.
Operator
- (int)other.
Operator
;
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\UpdateCommandOrderer.cs (12)
197
if (ModificationOperator.Update == command.
Operator
||
198
ModificationOperator.Insert == command.
Operator
)
209
if (ModificationOperator.Update != command.
Operator
||
228
if (ModificationOperator.Update == command.
Operator
||
229
ModificationOperator.Delete == command.
Operator
)
240
if (ModificationOperator.Update != command.
Operator
||
279
if (ModificationOperator.Update == command.
Operator
||
280
ModificationOperator.Insert == command.
Operator
)
291
if (ModificationOperator.Update != command.
Operator
||
302
if (ModificationOperator.Update == command.
Operator
||
303
ModificationOperator.Delete == command.
Operator
)
314
if (ModificationOperator.Update != command.
Operator
||