13 lines
365 B
C#
13 lines
365 B
C#
using Microsoft.EntityFrameworkCore.Design;
|
|
|
|
namespace MessengerApi.Db.Sql.Migrator
|
|
{
|
|
public partial class DesignTimeDbContextFactory : IDesignTimeDbContextFactory<MessengerSqlDbContext>
|
|
{
|
|
public MessengerSqlDbContext CreateDbContext(string[] args)
|
|
{
|
|
return new MessengerSqlDbContext(this.ConnectionString);
|
|
}
|
|
}
|
|
}
|