3 references to ToInt32
System.Data (3)
fx\src\data\System\Data\SQLTypes\SQLByte.cs (1)
247
return x.IsNull ? Null : new SqlByte(checked((byte)x.
ToInt32
()));
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
328
return x.IsNull ? Null : new SqlInt16(checked((short)x.
ToInt32
()));
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
322
return x.IsNull ? Null : new SqlInt32(x.
ToInt32
());