DEV Community
•
2026-07-31 06:13
Introducing SequelizeDotNet: Bringing Sequelize.js's Database-First Philosophy to .NET
A database-first, explicit-DDL ORM for .NET — runtime-emitted entity types, JOIN-free eager loading, CDC push notifications, and schema-driven GraphQL/OpenAPI generation.
If you've built anything with Sequelize.js in the Node.js world, you know the feeling: point it at a database, define (or reverse-engineer) a model, and you're querying with Model.findAll({ where: {...}, include: [...] }) within...