WCF 到数据库连接

发布于 2024-10-27 21:17:03 字数 106 浏览 1 评论 0原文

我正在开发一个商业应用程序,它查询大量记录。 哪种连接适合检索? 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

杀お生予夺 2024-11-03 21:17:03

如果您要创建 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文