Add EF Core + SQLite with empty AppDbContext

This commit is contained in:
2026-06-11 18:12:04 +00:00
parent 1eb0383834
commit 2c16a9485b
8 changed files with 120 additions and 17 deletions
+7
View File
@@ -0,0 +1,7 @@
using Microsoft.EntityFrameworkCore;
namespace backend.Data;
public class AppDbContext(DbContextOptions<AppDbContext> options) : DbContext(options)
{
}