Fredrik Tõnisson-Bystam
Fredrik Tõnisson-Bystam
This is my attempt at showcasing/drafting a version of "DAO restrictions", similarly to how `@SQLRestriction` works in Hibernate (which can be used for soft deletes), but without the magic annotation...
YouTrack: https://youtrack.jetbrains.com/issue/EXPOSED-405/SQLite-bugs-Table-with-custom-ID-behaves-weirdly-in-DAO-and-batchInsert Two errors show up: 1. A customly declared ID column is not set to the `id` property on DAO `new {}` 2. The ResultRow from a `batchInsert` fails...
feat: EXPOSED-657 Support regular spring JDBC transactions in the Exposed `SpringTransactionManager`
#### Description The Exposed `SpringTransactionManager` currently does not make Spring JDBC constructs take part in the transaction. In short: ```kotlin @Autowired private lateinit var dataSource: DataSource @Transactional fun insertTwoThings() {...
feat: EXPOSED-657 Support regular spring JDBC transactions in the Exposed SpringTransactionManager
#### Description The Exposed `SpringTransactionManager` currently does not make Spring JDBC constructs take part in the transaction. In short: ```kotlin @Autowired private lateinit var dataSource: DataSource @Transactional fun insertTwoThings() {...