Files
Assignment6/Data/PostgresApplicationDbContextFactory.cs
Chris d48d2a7b79
Some checks failed
Build and Push Docker Image / docker (push) Has been cancelled
initial push
2026-04-07 21:09:18 +00:00

20 lines
816 B
C#

using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Design;
namespace Example.Data;
public sealed class PostgresApplicationDbContextFactory : IDesignTimeDbContextFactory<PostgresApplicationDbContext>
{
public PostgresApplicationDbContext CreateDbContext(string[] args)
{
var configuration = DesignTimeConfiguration.Create(includeDevelopmentSettings: false);
var connectionString = configuration.GetConnectionString("DefaultConnection")
?? throw new InvalidOperationException("Connection string 'DefaultConnection' was not found.");
var optionsBuilder = new DbContextOptionsBuilder<PostgresApplicationDbContext>();
optionsBuilder.UseNpgsql(connectionString);
return new PostgresApplicationDbContext(optionsBuilder.Options);
}
}