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