我正在使用.Net Core编写我的第一个应用程序。我设计了一个多层应用程序,并且有一个单独的.Net Core类库,用于数据访问层。当我尝试从配置文件中读取连接字符串时,就像我们以前的.net版本一样
string connectionString = Convert.ToString(System.Configuration.ConfigurationManager.ConnectionStrings["TestDataBase"]);
但是我认为.Net核心类库不支持System.Configuration库。因此,我使用NPM添加了CoreCompact..System.Configuration库,并成功编译了我的应用程序
System.Configuration和CoreCompact..System.Configuration库有什么区别?