forked from chenzx1986/Emma.Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlogContextDesign.cs
More file actions
30 lines (25 loc) · 1.03 KB
/
BlogContextDesign.cs
File metadata and controls
30 lines (25 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Design;
using Microsoft.Extensions.Configuration;
namespace Emma.Blog.Data
{
public class BlogContextDesign : IDesignTimeDbContextFactory<BlogContext>
{
public BlogContext CreateDbContext(string[] args)
{
Directory.SetCurrentDirectory("..");//设置当前路径为当前解决方案的路径
string appSettingBasePath = Directory.GetCurrentDirectory() + "/Emma.Blog.Web";//改成你的appsettings.json所在的项目名称
var configBuilder = new ConfigurationBuilder()
.SetBasePath(appSettingBasePath)
.AddJsonFile("appsettings.json")
.Build();
var builder = new DbContextOptionsBuilder<BlogContext>();
builder.UseMySQL(configBuilder.GetConnectionString("MySqlConnection"));
return new BlogContext(builder.Options);
}
}
}