WinForms 应用程序的最佳数据访问模型

发布于 2024-08-27 06:17:40 字数 125 浏览 5 评论 0原文

对于 C# Winforms 应用程序来说,哪种数据访问模型具有最佳性能和速度?

  • 数据集?
  • 休眠?
  • 实体框架?

为什么人们会说不要使用数据集?

Which data-access model has the best performance and speed for a C# Winforms application?

  • Dataset?
  • NHibernate?
  • Entity Framework?

Why would people say not to use Datasets ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

恏ㄋ傷疤忘ㄋ疼 2024-09-03 06:17:40

这真的没关系。真正的成本在于 I/O,将查询发送到数据库引擎并返回结果。对于 WinForms,将它们绘制到屏幕上。将这些位打入对象模型只占总成本的一小部分。

It really doesn't matter. The true cost is in I/O, getting the query to the dbase engine and getting the results back. And getting them painted to the screen in the case of WinForms. Whacking the bits into an object model is a fraction of a percent of the overall cost.

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