12 references to One
System.Data.Entity (12)
System\Data\Common\Utils\Boolean\ConversionContext.cs (2)
137
return Vertex.
One
;
141
Vertex[] 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)
40
internal readonly static Vertex[] BooleanVariableChildren = new Vertex[] { Vertex.
One
, Vertex.Zero };
52
return 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)
92
return object.ReferenceEquals(Vertex.
One
, this);
System\Data\Common\Utils\Boolean\Visitor.cs (1)
263
return Vertex.
One
;
System\Data\Mapping\FunctionImportMapping.cs (3)
340
Vertex condition = Vertex.
One
;
381
Vertex candidateFunction = Vertex.
One
;
431
Vertex candidateFunction = Vertex.
One
;