如果一个实体与另一个实体的关系映射为Lazy = False,但是对于某个函数我需要在Lazily中获取它们,这是否可以在运行时进行?
答案 0 :(得分:3)
即。在LINQ中,您可以通过Fetch
/ FetchMany
/ ThenFetch
/ ThenFetchMany
热切地获取关系:
session.Query<Parent>()
.Where(x => x.Name == "Ruba")
.FetchMany(x => x.Children)
.ThenFetch(x => x.SomethingMore);