21 references to Int32
System.Data (11)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (1)
1038
p.DbType = DbType.
Int32
;
fx\src\data\System\Data\Common\DbDataAdapter.cs (1)
649
Debug.Assert(DbType.
Int32
== parameter.DbType, "unexpected DbType");
fx\src\data\System\Data\Odbc\Odbc32.cs (3)
787
static 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);
878
case DbType.
Int32
: return _Int;
984
case DbType.
Int32
:
fx\src\data\System\Data\OleDb\OLEDB_Enum.cs (3)
168
static 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
173
static 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
346
case DbType.
Int32
: return D_Integer;
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
1518
DbType.
Int32
, // SqlDbType.Int
fx\src\data\System\Data\SqlClient\SqlEnums.cs (2)
235
case 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)
161
dbType = DbType.
Int32
;
System\Data\Common\Internal\DbTypeMap.cs (1)
129
case DbType.
Int32
:
System\Data\Metadata\TypeHelpers.cs (1)
746
return DbType.
Int32
;
System.Web (2)
UI\WebControls\Parameter.cs (2)
463
case DbType.
Int32
:
505
return DbType.
Int32
;
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceUtil.cs (1)
410
case DbType.
Int32
:
System.Workflow.Runtime (4)
Hosting\SqlWorkflowPersistenceService.cs (3)
187
p1.DbType = DbType.
Int32
;
427
p1.DbType = DbType.
Int32
;
495
p1.DbType = DbType.
Int32
;
Tracking\SqlTrackingService.cs (1)
1301
command.Parameters.Add(DbResourceAllocator.NewDbParameter("@WorkflowId", DbType.
Int32
, System.Data.ParameterDirection.Output));