|
|
|
|
|
by lldata
3082 days ago
|
|
Cool project. But potentially dangerous if used as a CRUD ORM layer. I'd only recommend using something like this for the read model of a CQRS/Event Sourced system. Capture the commands and send them to business logic, that then updates the database. If you let a generic framework handle writes, it is like putting the business logic in the client. In that case SQL would be simpler. |
|
And if you need side-effects like sending email or stream more complicated aggregates there are lots of options in PostgreSQL to use the `notify/subscribe` system or use extensions to publish off to a message queue directly.