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