6 overrides of ExprType
System.Data.Entity (6)
System\Data\Common\Utils\Boolean\BoolExpr.cs (6)
182
internal override ExprType
ExprType
{ get { return ExprType.True; } }
219
internal override ExprType
ExprType
{ get { return ExprType.False; } }
268
internal override ExprType
ExprType
{ get { return ExprType.Term; } }
401
internal override ExprType
ExprType
{ get { return ExprType.And; } }
441
internal override ExprType
ExprType
{ get { return ExprType.Or; } }
464
internal override ExprType
ExprType
{ get { return ExprType.Not; } }
12 references to ExprType
System.Data.Entity (12)
System\Data\Common\Utils\Boolean\BoolExpr.cs (4)
151
return
ExprType
.ToString();
156
return null != other &&
ExprType
== other.
ExprType
&&
360
return StringUtil.FormatInvariant("{0}({1})",
ExprType
, _children);
System\Data\Common\Utils\Boolean\Simplifier.cs (6)
36
switch (child.
ExprType
)
58
bool isAnd = ExprType.And == tree.
ExprType
;
59
Debug.Assert(isAnd || ExprType.Or == tree.
ExprType
);
68
if (simplifiedChild.
ExprType
== tree.
ExprType
)
83
switch (simplifiedChild.
ExprType
)
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (2)
208
return m_tree.
ExprType
== ExprType.True;
217
return m_tree.
ExprType
== ExprType.False;