12 lines
393 B
C#
12 lines
393 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace Demo.Data.RemoteData.RemoteDataBase
|
|||
|
{
|
|||
|
public class DesignTimeDbContextFactory : DesignTimeDbContextFactoryBase<RemoteDatabaseContext>
|
|||
|
{
|
|||
|
protected override RemoteDatabaseContext CreateNewInstance(DbContextOptions<RemoteDatabaseContext> options)
|
|||
|
{
|
|||
|
return new RemoteDatabaseContext(options);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|