sequelize-typescript
sequelize-typescript copied to clipboard
Decorators and some other features for sequelize
# Issue ## Versions - sequelize: - sequelize-typescript: - typescript: ## Issue type - [ ] bug report - [ ] feature request ## Actual behavior I have a model...
# Issue I'm trying to use the `@AfterBulkCreate` hook. I have a static async method annotated. If I add some console.logs inside the method, it fires as expected. However, if...
# Issue I am trying to implement a many-to-many relation between two entities inside the same relation. ## Versions - sequelize: ^6.31.1 - sequelize-typescript: ^2.1.5 - typescript: ^5.0.4 ## Issue...
# Issue ## Versions - sequelize: - sequelize-typescript: - typescript: ## Issue type - [ ] bug report - [x] feature request ## Actual behavior ## Expected behavior ## Steps...
Is there plans to support [typesciprt 5.0 decorators](https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/#decorators)? Should we plan to use `experimentalDecorators` for the foreseeable future?
``` java @Transactional public void update(CategoryUpdateParam param){ if(! Strings.isNullOrEmpty(param.getName())) { changeName(param.getShopId(), param.getId(), param.getName()); }else if(param.getParentId()!=null) { changeParent(param.getShopId(), param.getId(), param.getParentId()); } } @Transactional public void changeName(Long shopId, Long categoryId, String name){...
# Issue ## Versions - "sequelize": "^6.32.1", - "sequelize-typescript": "^2.1.5", - "typescript": "^5.1.6" ## Issue type - [x] bug report - [ ] feature request ## Actual behavior 1. A...
# Issue ## Versions - sequelize: 6.32.1 - sequelize-typescript: 2.1.5 - typescript: 4.7.4 - tedious: 11.8.0 ## Issue type - [x] bug report - [ ] feature request ## Actual...
only lost the s, bs is the variable declared
Is this feature supported?