3 instantiations of FragmentQueryProcessor
System.Data.Entity (3)
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQueryProcessor.cs (1)
39return new FragmentQueryProcessor(mergedKB);
System\Data\Mapping\ViewGeneration\ViewgenContext.cs (2)
87m_leftFragmentQP = new FragmentQueryProcessor(leftKB); 113m_rightFragmentQP = new FragmentQueryProcessor(rightKB);
16 references to FragmentQueryProcessor
System.Data.Entity (16)
System\Data\Mapping\ViewGeneration\BasicViewGenerator.cs (1)
61private FragmentQueryProcessor LeftQP
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQuery.cs (3)
133internal static IEqualityComparer<FragmentQuery> GetEqualityComparer(FragmentQueryProcessor qp) 145FragmentQueryProcessor _qp; 147internal FragmentQueryEqualityComparer(FragmentQueryProcessor qp)
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQueryProcessor.cs (3)
34internal static FragmentQueryProcessor Merge(FragmentQueryProcessor qp1, FragmentQueryProcessor qp2)
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (1)
596FragmentQueryProcessor qp = isLeft ? context.LeftFragmentQP : context.RightFragmentQP;
System\Data\Mapping\ViewGeneration\Validation\ForeignConstraint.cs (4)
230FragmentQueryProcessor qp = FragmentQueryProcessor.Merge(childContext.RightFragmentQP, parentContext.RightFragmentQP); 443FragmentQueryProcessor qp = FragmentQueryProcessor.Merge(childContext.RightFragmentQP, parentContext.RightFragmentQP);
System\Data\Mapping\ViewGeneration\ViewgenContext.cs (4)
43private FragmentQueryProcessor m_leftFragmentQP; 46private FragmentQueryProcessor m_rightFragmentQP; 196internal FragmentQueryProcessor LeftFragmentQP 201internal FragmentQueryProcessor RightFragmentQP