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