2 overrides of RightFragmentQuery
System.Data.Entity (2)
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (1)
71internal override FragmentQuery RightFragmentQuery
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (1)
82internal override FragmentQuery RightFragmentQuery
17 references to RightFragmentQuery
System.Data.Entity (17)
System\Data\Mapping\ViewGeneration\BasicViewGenerator.cs (2)
655FragmentQuery intersection = LeftQP.Intersect(n1.RightFragmentQuery, n2.RightFragmentQuery);
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (2)
613FragmentQuery configurationNeedsDefault = _context.RightFragmentQP.Difference(rightDomainQuery.RightFragmentQuery, unionTree.RightFragmentQuery);
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingValidator.cs (5)
90if (!CheckEquivalence(cQueryTree.RightFragmentQuery, sQueryTree.RightFragmentQuery, inExtentCondition, 96cQueryTree.RightFragmentQuery.Condition.ExpensiveSimplify(); 97sQueryTree.RightFragmentQuery.Condition.ExpensiveSimplify(); 264if (!CheckEquivalence(cCombinedQuery, sCombinedTree.RightFragmentQuery, inExtentCondition,
System\Data\Mapping\ViewGeneration\Structures\CellTreeNode.cs (1)
61get { return !m_viewgenContext.RightFragmentQP.IsSatisfiable(RightFragmentQuery); }
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (2)
594FragmentQuery fragmentQuery = isLeft ? children.First().LeftFragmentQuery : children.First().RightFragmentQuery; 599FragmentQuery nextQuery = isLeft ? child.LeftFragmentQuery : child.RightFragmentQuery;
System\Data\Mapping\ViewGeneration\Validation\ForeignConstraint.cs (5)
231bool cImpliesP = qp.IsContainedIn(cNode.RightFragmentQuery, pNode.RightFragmentQuery); 440BoolExpression endCondition = pNode.RightFragmentQuery.Condition.Create(endRoleBoolean); 441FragmentQuery cNodeQuery = FragmentQuery.Create(pNode.RightFragmentQuery.Attributes, endCondition); 444bool cImpliesP = qp.IsContainedIn(cNodeQuery, pNode.RightFragmentQuery);