0
我想我的ASP.net核心的Web應用程序與我的MySQL服務器的連接,但是當我嘗試打開連接:ASP.net核心插件參考裝配
MySqlConnection connection = new MySqlConnection("Server=MySqlServer; database=todoDb; UID=root; password=...");
connection.Open();
我越來越這個錯誤在第二行:
The type 'DbConnection' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.
我知道,我需要添加一個引用到我的項目,但是當我嘗試做這在我的ASP.net核心應用的「組件」菜單選項是不存在的。
(我沒有足夠的聲譽,所以我不能把照片在我的問題(只需點擊1))1
我的問題是如何將引用添加到ASP組件.net核心?
和以前一樣,使用nuget。 – fredrik