MySql Scaffolding an Existing Database in EF Core
Posted 火冰·瓶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySql Scaffolding an Existing Database in EF Core相关的知识,希望对你有一定的参考价值。
官方文档详见:https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core-scaffold-example.html
Scaffolding a Database Using Package Manager Console in Visual Studio
-
Open Visual Studio and create a new Console App (.NET Core) for C#.
-
Add the MySQL NuGet package for EF Core using the
Install-Package MySql.Data.EntityFrameworkCore -Version 8.0.13
NoteThe version (for example,
-v 8.0.13
) must match the actual Connector/NET version you are using. For current version information, seeTable 9.2, “Supported versions of Entity Framework Core”. -
Install the following NuGet packages by selecting either
-
Microsoft.EntityFrameworkCore.Design
EF Core 1.1 only: Also add the
MySql.Data.EntityFrameworkCore.Design
package. -
Microsoft.EntityFrameworkCore.Tools version 1.1.6
(for EF Core 1.1) andMicrosoft.EntityFrameworkCore.Tools version 2.0.3
(for EF Core 2.0)NoteThe .NET tools are included in the .NET Core 2.1 SDK and not required or supported for EF Core 2.1. If this is an upgrade, remove the reference to that package from the .
csproj
file (version 2.0.3 in this example) :<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.3" />
-
-
Open
Scaffold-DbContext "server=localhost;port=3306;user=root;password=mypass;database=sakila" MySql.Data.EntityFrameworkCore -OutputDir sakila -f
Visual Studio creates a new
sakila
folder inside the project, which contains all the tables mapped to entities and thesakilaContext.cs
file.
以上是关于MySql Scaffolding an Existing Database in EF Core的主要内容,如果未能解决你的问题,请参考以下文章
MySQL DB 的 Pomelo Entity Framework Core Scaffolding 失败“无法添加注释,因为已经存在同名的注释。”
java 操作 mysql -报错 LockException: Failure obtaining db row lock: Table 'xxx' doesn't exis
Scaffolding on Rails 6.1 api based app with versioning on controller