Hibernate 和 RDLC 可以互相替代吗?
我知道Hibernate是一个ORM,但我不熟悉RDLC,它也是一个ORM吗?如果它们都是 ORM,那么应用程序团队在开发过程中选择使用其中一个而不是另一个(而不是同时使用两者)是否有意义?
I know Hibernate is an ORM, I'm not familiar with RDLC, is it an ORM as well? If they are both ORMs wouldn't it make sense for an application team to choose to use one rather than the other during development (as opposed to using both)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,ORM 用于从关系数据库中提取数据并使用它来填充应用程序使用的对象,RDLC 是用于创建报告的工具。它们是两种不同的东西,您可以轻松地在一个应用程序中使用它们。
No, ORMs are for pulling data from a relational database and using it to populate objects that the application uses, RDLC is a tool for creating reports. They are two different things and you could easily use both in one application.