21 references to Int32
System.Data (11)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (1)
1038p.DbType = DbType.Int32;
fx\src\data\System\Data\Common\DbDataAdapter.cs (1)
649Debug.Assert(DbType.Int32 == parameter.DbType, "unexpected DbType");
fx\src\data\System\Data\Odbc\Odbc32.cs (3)
787static private readonly TypeMap _Int = new TypeMap(OdbcType.Int, DbType.Int32, typeof(Int32), ODBC32.SQL_TYPE.INTEGER, ODBC32.SQL_C.SLONG, ODBC32.SQL_C.SLONG, 4, 10, true); 878case DbType.Int32: return _Int; 984case DbType.Int32:
fx\src\data\System\Data\OleDb\OLEDB_Enum.cs (3)
168static private readonly NativeDBType D_Error = new NativeDBType(0xff, 4, true, false, OleDbType.Error, NativeDBType.ERROR, S_ERROR, typeof(System.Int32), NativeDBType.ERROR, DbType.Int32 ); // 10 - integer4 173static private readonly NativeDBType D_Integer = new NativeDBType( 10, 4, true, false, OleDbType.Integer, NativeDBType.I4, S_I4, typeof(System.Int32), NativeDBType.I4, DbType.Int32 ); // 15 - integer4 346case DbType.Int32: return D_Integer;
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
1518DbType.Int32, // SqlDbType.Int
fx\src\data\System\Data\SqlClient\SqlEnums.cs (2)
235case DbType.Int32: return MetaInt; 749(10, 255, 4, true, false, false, TdsEnums.SQLINT4, TdsEnums.SQLINTN, MetaTypeName.INT, typeof(System.Int32), typeof(SqlInt32), SqlDbType.Int, DbType.Int32, 0);
System.Data.Entity (3)
System\Data\Common\DbCommandDefinition.cs (1)
161dbType = DbType.Int32;
System\Data\Common\Internal\DbTypeMap.cs (1)
129case DbType.Int32:
System\Data\Metadata\TypeHelpers.cs (1)
746return DbType.Int32;
System.Web (2)
UI\WebControls\Parameter.cs (2)
463case DbType.Int32: 505return DbType.Int32;
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceUtil.cs (1)
410case DbType.Int32:
System.Workflow.Runtime (4)
Hosting\SqlWorkflowPersistenceService.cs (3)
187p1.DbType = DbType.Int32; 427p1.DbType = DbType.Int32; 495p1.DbType = DbType.Int32;
Tracking\SqlTrackingService.cs (1)
1301command.Parameters.Add(DbResourceAllocator.NewDbParameter("@WorkflowId", DbType.Int32, System.Data.ParameterDirection.Output));