3 references to ToInt32
System.Data.Common (3)
System\Data\SQLTypes\SQLByte.cs (1)
189return x.IsNull ? Null : new SqlByte(checked((byte)x.ToInt32()));
System\Data\SQLTypes\SQLInt16.cs (1)
254return x.IsNull ? Null : new SqlInt16(checked((short)x.ToInt32()));
System\Data\SQLTypes\SQLInt32.cs (1)
250return x.IsNull ? Null : new SqlInt32(x.ToInt32());