引用类型为system.icloneable的声明,它在system.runtime中定义,但找不到

时间:2019-02-13 15:12:39

标签: c# .net

我在“新SqlConnection”行上收到此错误。

.netcore 2 Web应用程序 该代码包含在具有nuget包的.netstandard类库中:

system.runtime 4.3.1

系统配置

我真的不知道问题出在哪里,这是我的第一个.netcore应用程序,因此这里可能缺少一些业余爱好者

 using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Text;
using EP.Data.Helper;
public class BaseDALayer
{
    private void ExecuteStoredProcedure()
    {
        try
        {
            string connectionString = ConfigurationHelper.GetConnectionString();
            using (var connection = new SqlConnection(connectionString))
            {

            }
        }
        catch (Exception ex)
        {
            LogException(ex);
        }
    }

    private void LogException(Exception ex)
    {

    }
}

1 个答案:

答案 0 :(得分:0)

将 MySql.Data nuget 包更新到最新版本(在我的情况下为 v8.0.23)解决了该问题