24 references to IsTrue
System.Data (24)
fx\src\data\System\Data\Common\SQLTypes\SQLByteStorage.cs (2)
104if ((SqlByte.LessThan(values[record], min)).IsTrue) 119if ((SqlByte.GreaterThan(values[record], max)).IsTrue)
fx\src\data\System\Data\Common\SQLTypes\SQLDateTimeStorage.cs (2)
38if ((SqlDateTime.LessThan(values[record], min)).IsTrue) 53if ((SqlDateTime.GreaterThan(values[record], max)).IsTrue)
fx\src\data\System\Data\Common\SQLTypes\SQLDecimalStorage.cs (2)
104if ((SqlDecimal.LessThan(values[record], min)).IsTrue) 119if ((SqlDecimal.GreaterThan(values[record], max)).IsTrue)
fx\src\data\System\Data\Common\SQLTypes\SQLDoubleStorage.cs (2)
104if ((SqlDouble.LessThan(values[record], min)).IsTrue) 119if ((SqlDouble.GreaterThan(values[record], max)).IsTrue)
fx\src\data\System\Data\Common\SQLTypes\SQLInt16Storage.cs (2)
104if ((SqlInt16.LessThan(values[record], min)).IsTrue) 119if ((SqlInt16.GreaterThan(values[record], max)).IsTrue)
fx\src\data\System\Data\Common\SQLTypes\SQLInt32Storage.cs (2)
104if ((SqlInt32.LessThan(values[record], min)).IsTrue) 119if ((SqlInt32.GreaterThan(values[record], max)).IsTrue)
fx\src\data\System\Data\Common\SQLTypes\SQLInt64Storage.cs (2)
104if ((SqlInt64.LessThan(values[record], min)).IsTrue) 120if ((SqlInt64.GreaterThan(values[record], max)).IsTrue)
fx\src\data\System\Data\Common\SQLTypes\SQLMoneyStorage.cs (2)
104if ((SqlMoney.LessThan(values[record], min)).IsTrue) 119if ((SqlMoney.GreaterThan(values[record], max)).IsTrue)
fx\src\data\System\Data\Common\SQLTypes\SQLSingleStorage.cs (2)
106if ((SqlSingle.LessThan(values[record], min)).IsTrue) 121if ((SqlSingle.GreaterThan(values[record], max)).IsTrue)
fx\src\data\System\Data\Filter\BinaryNode.cs (2)
709value = ((SqlBoolean) vRight).IsTrue; 747value = (vRight is bool) ? ((bool)vRight) : (((SqlBoolean)vRight).IsTrue);
fx\src\data\System\Data\Filter\DataExpression.cs (1)
221return (((SqlBoolean)value).IsTrue);
fx\src\data\System\Data\Filter\UnaryNode.cs (1)
124else if (((SqlBoolean)vl).IsTrue) {
fx\src\data\System\Data\SqlClient\SqlDataReaderSmi.cs (1)
1082if (!_currentMetaData[i].IsHidden.IsTrue) {
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
179return x.IsTrue;