- EF, with its equivalent in spring
- DbContext vs DBContexOptions
- unit of work + repo
- DbSet
- Migration
- dotnet ef migrations add InitialCreate —output-dir Data/Migrations
- dotnet ef database update
- Seems similar to sql scripts to create db in h2. is it needed for prod level db too ?
- var dbContext = scope.ServiceProvider.GetRequiredService
();
- DbContext vs DBContexOptions
- required vs readonly
- Why passing GameContext and not DBContext itself (datasource)
