Browse Source
Update docs/zh-Hans/Entity-Framework-Core-Other-DBMS.md
Co-authored-by: Qingxiao Ren <rqx110@163.com>
pull/6345/head
liangshiwei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
docs/zh-Hans/Entity-Framework-Core-Other-DBMS.md
|
|
|
@ -76,7 +76,7 @@ var builder = new DbContextOptionsBuilder<YourProjectNameMigrationsDbContext>() |
|
|
|
将其替换为: |
|
|
|
|
|
|
|
````csharp |
|
|
|
var builder = new DbContextOptionsBuilder<TestMigrationsDbContext>() |
|
|
|
var builder = new DbContextOptionsBuilder<YourProjectNameMigrationsDbContext>() |
|
|
|
.UseMySql(configuration.GetConnectionString("Default")); |
|
|
|
```` |
|
|
|
|
|
|
|
|