NHibernate 预加载集合 +寻呼
这是我尝试使用急切加载的集合返回的实体的示例。
混合 ->曲目(集合) ->标签(集合)
我需要返回带有急切加载的曲目的混音分页列表标签,无需分页,通过使用 Future<>() 函数对曲目 + 标签运行多个查询相对简单。
因为这些数据需要分页...我怎样才能取回所有数据,以便 NHibernate 在显示我的数据时不会遇到 N+1 问题。
保罗
Here is an example of my entities that I am trying to return with eager loaded collections.
Mixes
-> Tracks (collection)
-> Tags (collection)
I need to return a paged list of Mixes with eager loaded tracks & tags, without paging it is relativly simple by using the Future<>() function to run multiple queries for the tracks + tags.
Because this data needs to be paged...how can I get all my data back so that NHibernate won't get the N+1 issue when displaying my data.
Paul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
总计:2 个查询。
Total: 2 queries.