27 references to SqlInt32
System.Data.Common (27)
System\Data\Common\SQLConvert.cs (1)
589
return new
SqlInt32
(XmlConvert.ToInt32((string)value));
System\Data\SQLTypes\SQLDecimal.cs (2)
3157
(n.IsPositive ? new
SqlInt32
(1) : new
SqlInt32
(-1));
System\Data\SQLTypes\SQLInt32.cs (24)
63
return new
SqlInt32
(x);
82
return new
SqlInt32
(int.Parse(s, null));
89
return x.IsNull ? Null : new
SqlInt32
(-x.m_value);
94
return x.IsNull ? Null : new
SqlInt32
(~x.m_value);
109
return new
SqlInt32
(iResult);
121
return new
SqlInt32
(iResult);
134
return new
SqlInt32
((int)lResult);
147
return new
SqlInt32
(x.m_value / y.m_value);
163
return new
SqlInt32
(x.m_value % y.m_value);
172
return (x.IsNull || y.IsNull) ? Null : new
SqlInt32
(x.m_value & y.m_value);
177
return (x.IsNull || y.IsNull) ? Null : new
SqlInt32
(x.m_value | y.m_value);
182
return (x.IsNull || y.IsNull) ? Null : new
SqlInt32
(x.m_value ^ y.m_value);
191
return x.IsNull ? Null : new
SqlInt32
(x.ByteValue);
197
return x.IsNull ? Null : new
SqlInt32
(x.Value);
203
return x.IsNull ? Null : new
SqlInt32
(x.Value);
218
return new
SqlInt32
((int)value);
231
return new
SqlInt32
((int)value);
244
return new
SqlInt32
((int)value);
250
return x.IsNull ? Null : new
SqlInt32
(x.ToInt32());
268
return new
SqlInt32
((int)ret);
275
return x.IsNull ? SqlInt32.Null : new
SqlInt32
(int.Parse(x.Value, null));
540
public static readonly SqlInt32 Zero = new
SqlInt32
(0);
541
public static readonly SqlInt32 MinValue = new
SqlInt32
(int.MinValue);
542
public static readonly SqlInt32 MaxValue = new
SqlInt32
(int.MaxValue);