Files
Operation-Blue-Laminate-v2/BlueLaminate/BlueLaminate.EFCore/Program.cs
2026-05-29 12:21:42 -05:00

8 lines
350 B
C#

using BlueLaminate.EFCore.Data;
// Build the context the same way the design-time factory does. Run
// `dotnet ef database update` to apply migrations to the configured database.
using var db = new SkinTrackerDbContextFactory().CreateDbContext(args);
Console.WriteLine($"CS2 Skin Tracker — {db.Model.GetEntityTypes().Count()} entities mapped.");