10 references to ScalarConstant
System.Data.Entity (10)
System\Data\Mapping\ViewGeneration\CellCreator.cs (4)
212ScalarConstant negatedCondition = new ScalarConstant(!conditionValue); 240BoolExpression leftQueryWhereClause = BoolExpression.CreateLiteral(new ScalarRestriction(memberToExpand, new ScalarConstant(conditionValue)), null); 243BoolExpression rightQueryWhereClause = BoolExpression.CreateLiteral(new ScalarRestriction(rightSidePath, new ScalarConstant(conditionValue)), null); 491conditionExpression = new ScalarRestriction(conditionMemberNode, new ScalarConstant(conditionMap.Value));
System\Data\Mapping\ViewGeneration\Structures\BoolLiteral.cs (3)
182IEnumerable<Constant> actualValues = new Constant[] { new ScalarConstant(true) }; 183IEnumerable<Constant> possibleValues = new Constant[] { new ScalarConstant(true), new ScalarConstant(false) };
System\Data\Mapping\ViewGeneration\Structures\Domain.cs (3)
187defaultConstant = new ScalarConstant(defaultValue); 552yield return new ScalarConstant(value1); 553yield return new ScalarConstant(value2);