7 references to WithTies
System.Data.Entity (7)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
530
Debug.Assert(!expression.
WithTies
, "Limit.WithTies == true?");
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
545
Begin(e, "WithTies", e.
WithTies
);
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
373
if (e.
WithTies
)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
611
return this.Visit((e.
WithTies
? "LimitWithTies" : "Limit"), e.Argument, e.Limit);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
1442
inputNode.Child0 = CreateLimitNode(inputNode.Child0, limitNode, expression.
WithTies
);
1450
retNode = CreateLimitNode(inputNode, limitNode, expression.
WithTies
);
System\Data\SqlClient\SqlGen\SqlGenerator.cs (1)
1708
result.Select.Top = new TopClause(topCount, e.
WithTies
);