sequelize-typescript icon indicating copy to clipboard operation
sequelize-typescript copied to clipboard

Decorators and some other features for sequelize

Results 222 sequelize-typescript issues
Sort by recently updated
recently updated
newest added

**Versions** - sequelize: 5.21.7 - sequelize-typescript: 1.1.0 - typescript: 3.8.3 **I'm submitting a ...** [ x ] bug report [ ] feature request **Actual behavior:** I execute a `findOne` function...

The documentation is less specific, if without using a specific foreign key field then all will be joined on the first foreign key.

# Issue ## Versions - sequelize: 6.6.4 - sequelize-typescript: 2.1.0 - typescript: 4.3.4 ## Issue type - [x] bug report - [ ] feature request ## Actual behavior I'm not...

# Issue TypeError: Right-hand side of 'instanceof' is not an object ## Versions - sequelize: 6.16.1 - sequelize-typescript: ~2.1.3 - typescript: ~4.5.5 ## Issue type - [x ] bug report...

@Table({ tableName: "user", underscored: true }) export class User extends Model { @PrimaryKey @Default(DataType.UUIDV4) @Column(DataType.UUID) public id: string; @Column public username: string; @Column public storeId: number; @Column public email: string;...

Hello everyone, I'm using meteor with postgres db. # Issue `Error: Model not initialized: User cannot be instantiated. "User" needs to be added to a Sequelize instance.` ## Versions -...

Hi guys, I was developing a small project and I found a bug. Basically when we create an index with a table with the underscored property, we get an SQL...

# Issue ## Versions - sequelize: ^6.16.1 - sequelize-typescript: ^2.1.2 - typescript: ^4.5.5 ## Issue type - [x] question - [ ] feature request - [ ] bug report ###...

# Issue l have created the table with index in sqlserver, the table has 6000 data and it include 4 tables, i query it only need 0.2 seconds, but use...

I want to implement SQL feature WITH (NOLOCK) in below fetch, i am using "sequelize-typescript": return await Style.findOne({ where: styleWhereCondition, include: [ { model: StyleExt, required: false }, { model:...