WCF 到数据库连接
我正在开发一个商业应用程序,它查询大量记录。 哪种连接适合检索? 1.LINQ to SQL 或 2. LINQ 到实体或 3. RIA 服务或 4.其他?
非常感谢您的帮助。
I am developing a businees application, which queries lots of record.
Which connectivity is good to retrieve?
1. LINQ to SQL or
2. LINQ to Entity or
3. RIA Service or
4. Others ?
Your help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您要创建 WCF 服务以将数据库公开给其他程序,您可以尝试 WCF 数据服务。这样,服务的使用者就可以使用 LINQ 语法向服务发送复杂的查询,服务将在数据库上执行这些查询并返回 REST 风格的结果,其格式为名为 OData 的 XML 方言,可以由任何 XML 解析器读取。 - 或由 WCF 数据服务客户端透明地读取并转换为对象。
If you're creating a WCF service to expose a database to other programs, you could try WCF Data Services. With this, consumers of your service can use LINQ syntax to send complex queries to the service, which will execute them on the database and return the results REST-style, formatted in an XML dialect called OData that can be read by any XML parser--or transparently read and converted into objects by a WCF Data Services client.