1 write to postJoinEliminationRules
System.Data.Entity (1)
System\Data\Query\PlanCompiler\TransformationRules.cs (1)
662
postJoinEliminationRules
= new List<InternalTrees.Rule>();
7 references to postJoinEliminationRules
System.Data.Entity (7)
System\Data\Query\PlanCompiler\TransformationRules.cs (7)
660
if (
postJoinEliminationRules
== null)
663
postJoinEliminationRules
.AddRange(ProjectOpRules.Rules); //these don't use key info per-se, but can help after the distinct op rules.
664
postJoinEliminationRules
.AddRange(DistinctOpRules.Rules);
665
postJoinEliminationRules
.AddRange(FilterOpRules.Rules);
666
postJoinEliminationRules
.AddRange(JoinOpRules.Rules);
667
postJoinEliminationRules
.AddRange(NullabilityRules);
669
return
postJoinEliminationRules
;