6 references to Update
System.Data.Entity (6)
System\Data\Common\CommandTrees\BasicCommandTreeVisitor.cs (1)
72case DbCommandTreeKind.Update:
System\Data\Common\CommandTrees\DbUpdateCommandTree.cs (1)
102get { return DbCommandTreeKind.Update; }
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (1)
207Debug.Assert(originalTree.CommandTreeKind == DbCommandTreeKind.Insert || originalTree.CommandTreeKind == DbCommandTreeKind.Update, "Set clauses specified for a modification tree that is not an update or insert tree?");
System\Data\SqlClient\SqlGen\DmlSqlGenerator.cs (1)
585Debug.Assert(_commandTree.CommandTreeKind == DbCommandTreeKind.Update, "did you add a new option?");
System\Data\SqlClient\SqlGen\SqlGenerator.cs (1)
427case DbCommandTreeKind.Update:
System\Data\SqlClient\SqlProviderServices.cs (1)
142commandTree.CommandTreeKind != DbCommandTreeKind.Update) {