Files
messengerapi.Broker/code/MessengerBroker.Db.Sql.Migrator/DesignTimeDbContextFactory.cs

13 lines
355 B
C#

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