9 references to NotExpr
System.Data.Entity (9)
System\Data\Common\Utils\Boolean\BoolExpr.cs (2)
146
return new
NotExpr
<T_Identifier>(this);
312
return 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)
66
return new
NotExpr
<T_Identifier>(expression);
System\Data\Common\Utils\Boolean\Visitor.cs (2)
48
return new
NotExpr
<T_Identifier>(expression.Child.Accept(this));
213
return new
NotExpr
<T_To>(expression.Child.Accept(this));
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQueryProcessor.cs (1)
136
new
NotExpr
<DomainConstraint<BoolLiteral, Constant>>(new TermExpr<DomainConstraint<BoolLiteral, Constant>>(constraint))));
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (1)
121
m_tree = new
DomainNotExpr
(childList[0].m_tree);
System\Data\Mapping\ViewGeneration\Structures\BoolLiteral.cs (1)
201
expr = new
DomainNotExpr
(expr);