12 references to Returning
System.Data.Entity (12)
System\Data\Common\CommandTrees\BasicCommandTreeVisitor.cs (2)
104
if (insertTree.
Returning
!= null)
106
this.VisitExpression(insertTree.
Returning
);
System\Data\Common\CommandTrees\DbInsertCommandTree.cs (4)
24
/// When the <see cref="
Returning
"/> property is set, the command returns a reader; otherwise,
80
get { return null !=
Returning
; }
97
if (null != this.
Returning
)
99
dumper.Dump(this.
Returning
, "Returning");
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (2)
115
if (null != tree.
Returning
)
117
returningNode = new TreeNode("Returning", _visitor.VisitExpression(tree.
Returning
));
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (1)
212
insertTree.Target, ReplaceClauses(insertTree.SetClauses, clauseMappings).AsReadOnly(), insertTree.
Returning
);
System\Data\SqlClient\SqlGen\DmlSqlGenerator.cs (3)
112
null != tree.
Returning
, sqlVersion);
226
GenerateReturningSql(commandText, tree, tableType, translator, tree.
Returning
, useGeneratedValuesVariable);
241
if (sqlVersion > SqlVersion.Sql8 && tree.
Returning
!= null)