12 references to One
System.Data.Entity (12)
System\Data\Common\Utils\Boolean\ConversionContext.cs (2)
137return Vertex.One; 141Vertex[] children = domain.Select(element => range.Contains(element) ? Vertex.One : Vertex.Zero).ToArray();
System\Data\Common\Utils\Boolean\KnowledgeBase.cs (1)
47_knowledge = Vertex.One; // we know '1', but nothing else at present
System\Data\Common\Utils\Boolean\Solver.cs (4)
40internal readonly static Vertex[] BooleanVariableChildren = new Vertex[] { Vertex.One, Vertex.Zero }; 52return IfThenElse(vertex, Vertex.Zero, Vertex.One); 72.Aggregate(Vertex.One, (left, right) => IfThenElse(left, right, Vertex.Zero)); 98.Aggregate(Vertex.Zero, (left, right) => IfThenElse(left, Vertex.One, right));
System\Data\Common\Utils\Boolean\Vertex.cs (1)
92return object.ReferenceEquals(Vertex.One, this);
System\Data\Common\Utils\Boolean\Visitor.cs (1)
263return Vertex.One;
System\Data\Mapping\FunctionImportMapping.cs (3)
340Vertex condition = Vertex.One; 381Vertex candidateFunction = Vertex.One; 431Vertex candidateFunction = Vertex.One;