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