25 references to Int64
System.Data (8)
fx\src\data\System\Data\Odbc\Odbc32.cs (3)
776
static private readonly TypeMap _BigInt = new TypeMap(OdbcType.BigInt, DbType.
Int64
, typeof(Int64), ODBC32.SQL_TYPE.BIGINT, ODBC32.SQL_C.SBIGINT, ODBC32.SQL_C.SBIGINT, 8, 20, true);
879
case DbType.
Int64
: return _BigInt;
982
case DbType.
Int64
:
fx\src\data\System\Data\OleDb\OLEDB_Enum.cs (2)
174
static private readonly NativeDBType D_BigInt = new NativeDBType( 19, 8, true, false, OleDbType.BigInt, NativeDBType.I8, S_I8, typeof(System.Int64), NativeDBType.I8, DbType.
Int64
); // 16 - integer8
347
case DbType.
Int64
: return D_BigInt;
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
1510
DbType.
Int64
, // SqlDbType.BigInt
fx\src\data\System\Data\SqlClient\SqlEnums.cs (2)
236
case DbType.
Int64
: return MetaBigInt;
707
(19, 255, 8, true, false, false, TdsEnums.SQLINT8, TdsEnums.SQLINTN, MetaTypeName.BIGINT, typeof(System.Int64), typeof(SqlInt64), SqlDbType.BigInt, DbType.
Int64
, 0);
System.Data.Entity (3)
System\Data\Common\DbCommandDefinition.cs (1)
164
dbType = DbType.
Int64
;
System\Data\Common\Internal\DbTypeMap.cs (1)
133
case DbType.
Int64
:
System\Data\Metadata\TypeHelpers.cs (1)
750
return DbType.
Int64
;
System.Web (2)
UI\WebControls\Parameter.cs (2)
465
case DbType.
Int64
:
507
return DbType.
Int64
;
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceUtil.cs (1)
412
case DbType.
Int64
:
System.Workflow.Runtime (11)
Hosting\DbResourceAllocator.cs (2)
248
if (type == DbType.
Int64
)
256
if (type == DbType.
Int64
)
Tracking\SqlTrackingService.cs (9)
1443
command.Parameters.Add(DbResourceAllocator.NewDbParameter("@WorkflowInstanceEventId1", DbType.
Int64
, ParameterDirection.Output));
1465
command.Parameters.Add(DbResourceAllocator.NewDbParameter("@WorkflowInstanceEventId2", DbType.
Int64
, ParameterDirection.Output));
1544
DbParameter param = DbResourceAllocator.NewDbParameter("@WorkflowInstanceInternalId", DbType.
Int64
, System.Data.ParameterDirection.InputOutput);
1623
DbParameter param = DbResourceAllocator.NewDbParameter("@ActivityInstanceId" + paramIdString, DbType.
Int64
, System.Data.ParameterDirection.InputOutput);
1635
command.Parameters.Add(DbResourceAllocator.NewDbParameter("@ActivityExecutionStatusEventId" + paramIdString, DbType.
Int64
, ParameterDirection.Output));
1738
DbParameter param = DbResourceAllocator.NewDbParameter("@WorkflowInstanceInternalId", DbType.
Int64
);
1745
param = DbResourceAllocator.NewDbParameter("@ActivityInstanceId", DbType.
Int64
, System.Data.ParameterDirection.InputOutput);
1786
command.Parameters.Add(DbResourceAllocator.NewDbParameter("@UserEventId", DbType.
Int64
, ParameterDirection.Output));
1859
command.Parameters.Add(DbResourceAllocator.NewDbParameter("@TrackingDataItemId" + index, DbType.
Int64
, System.Data.ParameterDirection.Output));