SQL Server CE 4.0
我正在考虑将 SQL Server Ce 4.0 与 ASP.NET MVC MVC3 和实体框架 CTP 5 一起用于我的个人博客应用程序。
我的问题是 SQL Server CE 4 是否具有完整的 LINQ 支持,即所有运算符等?有谁知道有任何文章/研究来测试 SQL Server CE LINQ 功能的功能吗?
I am looking into using SQL Server Ce 4.0 for my personal blog application along with ASP.NET MVC MVC3 and Entity framework CTP 5.
My question is does SQL Server CE 4 have full LINQ support, i.e. all operators and the like ? Does anyone know of any article/study done to test the functionality of SQL Server CE LINQ functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LINQ 功能广泛地由您使用的 SQL 客户端提供,而不是由数据库提供,并且由客户端将 LINQ 操作映射到数据库能够理解的 SQL 等。通常只是非常简单的 SQL。
'介绍 SQL Server CE 4' 博客 表示它支持实体框架,因此如果您使用实体框架,那么您应该可以访问所有常用的 EF基于 LINQ 的操作。
有什么是你特别担心自己得不到的吗?
The LINQ features are broadly provided by the SQL client you're using, not the database, and it's up to the client to map the LINQ operations into SQL etc. that the database will understand. It's usually only very simple SQL.
The 'introducing SQL Server CE 4' blog says it supports the Entity Framework, so if you're using the Entity Framework then you should have access to all the usual EF-based LINQ operations.
Are there any in particular you're worried you're not going to get?