9 references to NotExpr
System.Data.Entity (9)
System\Data\Common\Utils\Boolean\BoolExpr.cs (2)
146return new NotExpr<T_Identifier>(this); 312return new NotExpr<T_Identifier>(negatedLiteral.Term);
System\Data\Common\Utils\Boolean\Literal.cs (1)
41: base(isTermPositive ? (BoolExpr<T_Identifier>)term : (BoolExpr<T_Identifier>)new NotExpr<T_Identifier>(term))
System\Data\Common\Utils\Boolean\NegationPusher.cs (1)
66return new NotExpr<T_Identifier>(expression);
System\Data\Common\Utils\Boolean\Visitor.cs (2)
48return new NotExpr<T_Identifier>(expression.Child.Accept(this)); 213return new NotExpr<T_To>(expression.Child.Accept(this));
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQueryProcessor.cs (1)
136new NotExpr<DomainConstraint<BoolLiteral, Constant>>(new TermExpr<DomainConstraint<BoolLiteral, Constant>>(constraint))));
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (1)
121m_tree = new DomainNotExpr(childList[0].m_tree);
System\Data\Mapping\ViewGeneration\Structures\BoolLiteral.cs (1)
201expr = new DomainNotExpr(expr);