mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
906 B
29 lines
906 B
using System.IO;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Design;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace DistDemoApp
|
|
{
|
|
public class TodoDbContextFactory : IDesignTimeDbContextFactory<TodoDbContext>
|
|
{
|
|
public TodoDbContext CreateDbContext(string[] args)
|
|
{
|
|
var configuration = BuildConfiguration();
|
|
|
|
var builder = new DbContextOptionsBuilder<TodoDbContext>()
|
|
.UseSqlServer(configuration.GetConnectionString("Default"));
|
|
|
|
return new TodoDbContext(builder.Options);
|
|
}
|
|
|
|
private static IConfigurationRoot BuildConfiguration()
|
|
{
|
|
var builder = new ConfigurationBuilder()
|
|
.SetBasePath(Directory.GetCurrentDirectory())
|
|
.AddJsonFile("appsettings.json", optional: false);
|
|
|
|
return builder.Build();
|
|
}
|
|
}
|
|
}
|