23 references to IsTrue
System.Data.Common (23)
System\Data\Common\SQLTypes\SQLByteStorage.cs (2)
110if ((SqlByte.LessThan(_values[record], min)).IsTrue) 127if ((SqlByte.GreaterThan(_values[record], max)).IsTrue)
System\Data\Common\SQLTypes\SQLDateTimeStorage.cs (2)
37if ((SqlDateTime.LessThan(_values[record], min)).IsTrue) 54if ((SqlDateTime.GreaterThan(_values[record], max)).IsTrue)
System\Data\Common\SQLTypes\SQLDecimalStorage.cs (2)
110if ((SqlDecimal.LessThan(_values[record], min)).IsTrue) 127if ((SqlDecimal.GreaterThan(_values[record], max)).IsTrue)
System\Data\Common\SQLTypes\SQLDoubleStorage.cs (2)
110if ((SqlDouble.LessThan(_values[record], min)).IsTrue) 127if ((SqlDouble.GreaterThan(_values[record], max)).IsTrue)
System\Data\Common\SQLTypes\SQLInt16Storage.cs (2)
110if ((SqlInt16.LessThan(_values[record], min)).IsTrue) 127if ((SqlInt16.GreaterThan(_values[record], max)).IsTrue)
System\Data\Common\SQLTypes\SQLInt32Storage.cs (2)
110if ((SqlInt32.LessThan(_values[record], min)).IsTrue) 127if ((SqlInt32.GreaterThan(_values[record], max)).IsTrue)
System\Data\Common\SQLTypes\SQLInt64Storage.cs (2)
110if ((SqlInt64.LessThan(_values[record], min)).IsTrue) 128if ((SqlInt64.GreaterThan(_values[record], max)).IsTrue)
System\Data\Common\SQLTypes\SQLMoneyStorage.cs (2)
110if ((SqlMoney.LessThan(_values[record], min)).IsTrue) 127if ((SqlMoney.GreaterThan(_values[record], max)).IsTrue)
System\Data\Common\SQLTypes\SQLSingleStorage.cs (2)
111if ((SqlSingle.LessThan(_values[record], min)).IsTrue) 127if ((SqlSingle.GreaterThan(_values[record], max)).IsTrue)
System\Data\Filter\BinaryNode.cs (2)
964value = ((SqlBoolean)vRight).IsTrue; 1006value = (vRight is bool) ? ((bool)vRight) : (((SqlBoolean)vRight).IsTrue);
System\Data\Filter\DataExpression.cs (1)
261return (((SqlBoolean)value).IsTrue);
System\Data\Filter\UnaryNode.cs (1)
134else if (((SqlBoolean)vl).IsTrue)
System\Data\SQLTypes\SQLBoolean.cs (1)
138return x.IsTrue;