fix(reader): resolve PR #69 code review comments under #issuecomment-429

This commit is contained in:
2026-06-05 11:44:47 +02:00
parent 510c18d526
commit 46cc119c81
7 changed files with 71 additions and 65 deletions
+10
View File
@@ -36,3 +36,13 @@ Run test suite:
```bash
dotnet test --no-restore
```
## 🗄️ Database Migrations
Automatic database migrations at startup (`MigrateAsync()`) have been disabled to ensure compatibility with Native AOT compilation and prevent locking issues in multi-instance environments.
To apply database migrations locally, run the EF Core migration command from the solution root:
```bash
dotnet ef database update --project src/NexusReader.Infrastructure --startup-project src/NexusReader.Web
```