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