9 references to Collation
System.Data.Entity (9)
System\Data\Query\InternalTrees\Dump.cs (1)
507attrs.Add("Collation", sortKey.Collation);
System\Data\Query\InternalTrees\OpCopier.cs (1)
211sortKey.Collation
System\Data\Query\PlanCompiler\CTreeGenerator.cs (3)
1536if (!string.IsNullOrEmpty(sortKey.Collation)) 1539sortClause = (sortKey.AscendingSort ? keyExpression.ToSortClause(sortKey.Collation) : keyExpression.ToSortClauseDescending(sortKey.Collation));
System\Data\Query\PlanCompiler\NestPullup.cs (3)
1627inputNestOp.PrefixSortKeys.Add(Command.CreateSortKey(sk.Var, sk.AscendingSort, sk.Collation)); 1667sortKeyList.Add(Command.CreateSortKey(sk.Var, sk.AscendingSort, sk.Collation)); 1676sortKeyList.Add(Command.CreateSortKey(sk.Var, sk.AscendingSort, sk.Collation));
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
683InternalTrees.SortKey newKey = Command.CreateSortKey(v, k.AscendingSort, k.Collation);