无法在 Visual Studio Xamarin 项目中安装 System.data.sqlClient
Cannot instell System.data.sqlClient in Visual Studio Xamarin project
我之前问过一个关于 azure 数据库的问题,并得到了一个有用的解决方案,但是要使用该解决方案,我需要安装 System.Data.SqlClient。我尝试从微软安装 NuGet 包,但每当我这样做时,我都会收到以下错误。我真的很感激一些帮助。该项目是一个使用 xamarin.forms 和可移植 class 库的跨平台应用程序。我正在尝试将它安装到 Appname(portable),因为那是我的脚本所在的位置。谢谢。
Severity Code Description Project File Line Suppression State
Error Could not install package 'System.Data.SqlClient 4.3.0'.
You are trying to install this package into a project that targets '.NETPortable,
Version=v4.5,Profile=Profile259', but the package does not contain any assembly references
or content files that are compatible with that framework. For more information,
contact the package author. 0
从 http://portablelibraryprofiles.stephencleary.com/ 开始,profile259 不支持 system.data.sqlclient。它有 windows phone 里面。
配置文件适用于 .NET Framework 4.5、Windows 8.0、Windows Phone 8.1、Windows Phone Silverlight 8.0.
更大的图景是 Xamarin,移动客户端无法直接访问 sql 服务器。使用 webapi 或类似的方式构建服务外观......请参阅 https://blog.xamarin.com/developing-enterprise-apps-using-xamarin-forms 了解一些想法。
我之前问过一个关于 azure 数据库的问题,并得到了一个有用的解决方案,但是要使用该解决方案,我需要安装 System.Data.SqlClient。我尝试从微软安装 NuGet 包,但每当我这样做时,我都会收到以下错误。我真的很感激一些帮助。该项目是一个使用 xamarin.forms 和可移植 class 库的跨平台应用程序。我正在尝试将它安装到 Appname(portable),因为那是我的脚本所在的位置。谢谢。
Severity Code Description Project File Line Suppression State
Error Could not install package 'System.Data.SqlClient 4.3.0'.
You are trying to install this package into a project that targets '.NETPortable,
Version=v4.5,Profile=Profile259', but the package does not contain any assembly references
or content files that are compatible with that framework. For more information,
contact the package author. 0
从 http://portablelibraryprofiles.stephencleary.com/ 开始,profile259 不支持 system.data.sqlclient。它有 windows phone 里面。
配置文件适用于 .NET Framework 4.5、Windows 8.0、Windows Phone 8.1、Windows Phone Silverlight 8.0.
更大的图景是 Xamarin,移动客户端无法直接访问 sql 服务器。使用 webapi 或类似的方式构建服务外观......请参阅 https://blog.xamarin.com/developing-enterprise-apps-using-xamarin-forms 了解一些想法。