为映射文件中的实体设置默认 orderby?
是否可以设置在 NHibernate 映射文件中使用的默认排序列?除非明确定义,否则我想按“名称”列自动对所有特定实体进行排序。
我已经看到它可以在集合上完成,但这不是我在这种情况下所追求的。
Is it possible to set the default order-by column to use in the NHibernate mapping file? Unless explicitly defined I want to order all specific entities by the Name column automatically.
I've seen that it can be done on collections but thats not what I'm after in this case.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这在 NHibernate 映射上下文中没有意义,因为顺序始终取决于您执行查询的方式;定义“默认顺序”是毫无意义的。
相反,请在 DAO/Repository 基类中执行此操作。
No, that wouldn't make sense in the NHibernate mapping context because the order always depends on how you are doing the query; defining a "default order" would be pointless.
Instead, do that in a DAO/Repository base class.