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

Hi! Thanks for your effort and this lib! # Issue I've been using [sequelize-typescript](https://github.com/RobinBuschmann/sequelize-typescript) for some time and noticed, that associations are not added to `dataValues` of native Sequelize object...

# Issue ## Versions - sequelize: 6.1.1 - sequelize-typescript: 2.1.0 - typescript: 4.2.3 ## Issue type - [x] bug report - [ ] feature request ## Actual behavior I use...

**Versions** - sequelize: 5.21.13 - sequelize-typescript: 1.1.0 - typescript: 3.8.2 **I'm submitting a ...** [ ] bug report [x] feature request **Actual behavior:** Docs are incomplete on how to use...

# Issue `Op.in` operator doesn't work with array of dates. ## Versions - sequelize: 6.6.2 - sequelize-typescript: 2.1.0 - typescript: 4.2.3 ## Issue type - [x] bug report - [...

for example `@IsDate(msg:"please enter a valid date")`

enhancement

Hello. I`m using sequelize typescript for a short time and I encountered a bug in foreign key constraint. when I want to set onDelete and onUpdate to RESTRICT mode, it...

I didn't find much information on how to bind service result to desired dto. For example: await this.usersService.findAll(); how to bind to users dto or is there any examples of...

**Versions** - sequelize: 6.4.0 - sequelize-typescript: 2.0.0 - typescript: 4.1.3 **I'm submitting a ...** [x] bug report [x] feature request **Actual behavior:** I am unable to use the decorators to...

## For queries with include option and "order" suboption sorting doesn't work. ### I am selecting instances with associated records. And trying to sort related rows. **Here is the link...

mysql.ts ``` import {Sequelize, Table, Column, Model } from 'sequelize-typescript' @Table export class Person extends Model { @Column get name(): string {return this.getDataValue('name');}; set name(value: string) { this.setDataValue('name', value); }...