Bạn có thể thử cách này
-
Cài đặt gói Pomelo.EntityFrameworkCore.MySQL
-
Thêm dịch vụ tại Startup.cs
services.AddCors (); services.AddDbContext (options => options.UseMySql (Configuration.GetConnectionString ("DatabaseConnectionString")));
-
thay đổi chuỗi kết nối tại appsettings.json
"ConnectionStrings":{"DatabaseConnectionString":"server =localhost; port =3306; database =MyAppDB; user =root; password ="}
* thay đổi số cổng theo máy chủ MySQL của bạn
4. Chạy các giao thức này tại Bảng điều khiển trình quản lý gói để di chuyển dữ liệuAdd-Migration InitialCreate
Cập nhật-Cơ sở dữ liệu
Bạn có thể xem dự án tại github , để hiểu rõ hơn