13 lines
355 B
C#
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);
|
|
}
|
|
}
|
|
}
|