11 lines
304 B
C#
11 lines
304 B
C#
using Microsoft.EntityFrameworkCore.Design;
|
|
|
|
namespace CatHasPawsDatabase;
|
|
|
|
internal class SampleContextFactory : IDesignTimeDbContextFactory<CatHasPawsDbContext>
|
|
{
|
|
public CatHasPawsDbContext CreateDbContext(string[] args)
|
|
{
|
|
return new CatHasPawsDbContext(new DefaultConfigurationDatabase());
|
|
}
|
|
} |