25 references to Int64
System.Data (8)
fx\src\data\System\Data\Odbc\Odbc32.cs (3)
776static 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); 879case DbType.Int64: return _BigInt; 982case DbType.Int64:
fx\src\data\System\Data\OleDb\OLEDB_Enum.cs (2)
174static 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 347case DbType.Int64: return D_BigInt;
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
1510DbType.Int64, // SqlDbType.BigInt
fx\src\data\System\Data\SqlClient\SqlEnums.cs (2)
236case 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)
164dbType = DbType.Int64;
System\Data\Common\Internal\DbTypeMap.cs (1)
133case DbType.Int64:
System\Data\Metadata\TypeHelpers.cs (1)
750return DbType.Int64;
System.Web (2)
UI\WebControls\Parameter.cs (2)
465case DbType.Int64: 507return DbType.Int64;
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceUtil.cs (1)
412case DbType.Int64:
System.Workflow.Runtime (11)
Hosting\DbResourceAllocator.cs (2)
248if (type == DbType.Int64) 256if (type == DbType.Int64)
Tracking\SqlTrackingService.cs (9)
1443command.Parameters.Add(DbResourceAllocator.NewDbParameter("@WorkflowInstanceEventId1", DbType.Int64, ParameterDirection.Output)); 1465command.Parameters.Add(DbResourceAllocator.NewDbParameter("@WorkflowInstanceEventId2", DbType.Int64, ParameterDirection.Output)); 1544DbParameter param = DbResourceAllocator.NewDbParameter("@WorkflowInstanceInternalId", DbType.Int64, System.Data.ParameterDirection.InputOutput); 1623DbParameter param = DbResourceAllocator.NewDbParameter("@ActivityInstanceId" + paramIdString, DbType.Int64, System.Data.ParameterDirection.InputOutput); 1635command.Parameters.Add(DbResourceAllocator.NewDbParameter("@ActivityExecutionStatusEventId" + paramIdString, DbType.Int64, ParameterDirection.Output)); 1738DbParameter param = DbResourceAllocator.NewDbParameter("@WorkflowInstanceInternalId", DbType.Int64); 1745param = DbResourceAllocator.NewDbParameter("@ActivityInstanceId", DbType.Int64, System.Data.ParameterDirection.InputOutput); 1786command.Parameters.Add(DbResourceAllocator.NewDbParameter("@UserEventId", DbType.Int64, ParameterDirection.Output)); 1859command.Parameters.Add(DbResourceAllocator.NewDbParameter("@TrackingDataItemId" + index, DbType.Int64, System.Data.ParameterDirection.Output));