[EF Core] 使用.NET Core CLI建立資料庫實體類型

在.NET Core裡,想要使用Entity Framework Db First把MySQL內的Table轉成資料模型,可以透過.NET Core CLI幫忙建立

1. 使用Nuget 安裝 Pomelo.EntityFrameworkCore.Mysql

2. 打開套件管理器主控台

3.輸入dotnet ef dbcontext scaffold "server={Db位置};port=3306; user={帳號};database={資料庫名稱};password={密碼};charset=utf8;" {Provider} -o {輸出路徑}

參考資料 : https://docs.microsoft.com/zh-tw/ef/core/miscellaneous/cli/dotnet#dotnet-ef-dbcontext-scaffold