所选对象使用不受支持的数据库提供程序
我正在使用 Visual Studio 2010
在我的项目中,我添加了一个本地数据库 Data.sdf
现在我想使用 LINQ TO SQL,但是当我将数据库表拖放到 LINQ 设计器中时,我在 Visual Studio 中收到以下错误:“所选对象使用不受支持的数据库提供程序”
我错过了什么吗?
我该如何解决它?
I'm using Visual Studio 2010
In my project I was added a local database Data.sdf
Now I wanna use LINQ TO SQL
with it, but when I drag and drop the database table into the LINQ designer , I get the following error in Visual Studio :
"The selected object(s) use an unsupported database provider"
Am I miss something ?
How can I fix it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
仅当与完整版本的 Microsoft SQL Server(包括 Express 版本)一起使用时,LINQ-to-SQL 才得到正式支持。虽然可以将它与 SQL Server CE(这似乎是您正在尝试做的事情)和其他一些一起使用,但需要额外的步骤。
您可以:
LINQ-to-SQL is only officially supported when used with a full version of Microsoft SQL Server (including Express editions). While it's possible to use it with SQL Server CE (which is what it appears you're trying to do) and some others, extra steps are required.
You can either:
LINQ to SQL 不支持几何、地理和层次结构数据类型。唯一的方法是不引用这些列并修改它们,以便它们可以保存空值
Geometry, Geography and Hierarchy data types are not supported in LINQ to SQL.The only way it would be to not reference those columns and modify them so they can hold null values
我遇到了这个问题,但在从 Nuget 安装 EntitiFramework 包后解决了。
ppm>安装包 EntityFramework
I had this issue but it was resolved after installing the EntitiFramework package from Nuget.
ppm> install-package EntityFramework
就我而言,这个神秘错误的原因是我使用了错误的数据提供程序。数据提供程序必须是“.NET Framework Data Provider for SQL Server”(或者至少不能是“Microsoft SqlClient Data Provider for SQL Server”,因为这是给我错误的提供程序)。
要修复现有连接的此问题:
In my case, the cause of this cryptic error was that I was using the wrong data provider. The data provider must be ".NET Framework Data Provider for SQL Server" (or, at least, it must not be "Microsoft SqlClient Data Provider for SQL Server" since that is the provider that was giving me the error).
To fix this for an existing connection: