找不到 SQL Server Compact 3.5 命名空间
我想使用 SQL Server Compact 3.5,但智能感知未显示 System.Data.SqlServerCe 命名空间。它表示“System.Data”命名空间中不存在类型或命名空间“SqlServerCe” (您是否缺少任何程序集引用?)
需要引用哪个程序集?
或者我是否需要使用任何其他命名空间才能使用 SQL Server Compact 3.5?
我安装了 Sql Server 2005 Standard 和 Express,以及 VC# 2010。
请提供一些使用 SQL Server CE 3.5 的参考链接。
I want to use SQL server compact 3.5, but intellisense is not showing System.Data.SqlServerCe
namespace.. it says type or namespace 'SqlServerCe' does not exist in 'System.Data' namespace (are you missing any Assembly reference?)
Which Assembly needs to be referenced?
or do I need to use any other namespace to use SQL Server Compact 3.5?
I have Sql Server 2005 Standard and Express installed, and VC# 2010.
Please provide some reference link to work with SQL Server CE 3.5..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在
添加引用
中,如果您没有看到屏幕截图中的引用,请浏览到C:\Program Files (x86)\Microsoft SQL Server Compact Edition\v3.5\Desktop< /代码> 文件夹
In
Add Reference
, if you do not see the reference as in the screenshot, browse to theC:\Program Files (x86)\Microsoft SQL Server Compact Edition\v3.5\Desktop
folderSQL Server Compact Edition (CE) 库位于
System.Data.SqlServerCe
命名空间中,该命名空间位于System.Data.SqlServerCe
程序集中。默认情况下不引用此程序集 - 您需要显式添加对它的引用才能使用它!一旦您完成此操作,您还需要
在使用 SQL Server 的 C# 文件顶部 添加一个行政长官。
请查看 Erik EJ 的博客,了解精彩内容有关 SQL Server CE 的所有内容的参考
The SQL Server Compact Edition (CE) libraries live in the
System.Data.SqlServerCe
namespace, which is in theSystem.Data.SqlServerCe
assembly. This assembly is not referenced by default - you need to explicitly add a reference to it before you can use it!Once you have that in place, you will also need a
at the top of your C# file using SQL Server CE.
Check out Erik EJ's blog for a great reference for all things SQL Server CE
您需要添加对“System.Data.SqlServerCe”程序集的引用。您可以从此处下载并安装 CE。
You need to add a reference to the 'System.Data.SqlServerCe' assembly. You can download and install CE from here.