"'MySqlConnection' Could Not Be Found" ASP.NET



我目前正在使用这篇文章,试图将我的ASP.NET Core项目连接到我的MySql数据库,并安装了NuGet包"MySqlConnector";正如它所说。文章接着说,将这一行添加到";ConfigureServices";Startup.cs.中的函数

services.AddTransient<MySqlConnection>(_ => new MySqlConnection(Configuration["ConnectionStrings:Default"]));

然而;MySqlConnection";红色下划线,悬停在其上方显示以下错误:

CS0246: The type or namespace "MySqlConnection" could not be found (are you missing a using directive or an assembly reference?)

我有什么东西不见了吗?这篇文章中是否有拼写错误,我应该安装MySqlConnection包?

MySqlconnection在名称空间MySqlConnector中定义。您必须在启动类的顶部添加以下using语句:

using MySqlConnector;

相关内容

  • 没有找到相关文章

最新更新