using Microsoft.EntityFrameworkCore.Design; namespace MessengerBroker.Db.Sql.Migrator { public partial class DesignTimeDbContextFactory : IDesignTimeDbContextFactory { public BrokerSqlDbContext CreateDbContext(string[] args) { return new BrokerSqlDbContext(CONNECTION_STRING); } } }