WinForms 应用程序的最佳数据访问模型
对于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这真的没关系。真正的成本在于 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.