13 references to Collation
System.Data.Entity (13)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (3)
107
if (!string.IsNullOrEmpty(clause.
Collation
))
109
result = (clause.Ascending ? CqtBuilder.ToSortClause(newExpression, clause.
Collation
) : CqtBuilder.ToSortClauseDescending(newExpression, clause.
Collation
));
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
795
string collStr = clause.
Collation
;
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (2)
671
if (!String.IsNullOrEmpty(clause.
Collation
))
674
_key.Append(clause.
Collation
);
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (2)
966
if (!string.IsNullOrEmpty(clause.
Collation
))
969
key.Text.Append(clause.
Collation
);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
2858
if (string.IsNullOrEmpty(clause.
Collation
))
2864
sortKey = Command.CreateSortKey(specVar, clause.Ascending, clause.
Collation
);
System\Data\SqlClient\SqlGen\SqlGenerator.cs (3)
3698
Debug.Assert(sortClause.
Collation
!= null);
3699
if (!String.IsNullOrEmpty(sortClause.
Collation
))
3702
orderByClause.Append(sortClause.
Collation
);