NHibernate搜索和渴望获取

时间:2012-01-05 01:34:14

标签: nhibernate nhibernate-search

我使用Lucene和NHibernate搜索会话进行搜索

IFullTextSession fullTextSession = Search.CreateFullTextSession(this.session);
var fullTextResult = fullTextSession.CreateFullTextQuery<T>("my query");

在我的实体映射中,我没有指定延迟加载或急切提取的选项,因为我更喜欢像Linq提供程序var customers = session.Query<Customer>().Fetch(c => c.Orders)那样控制更灵活。但是IFullTextSession不提供此类功能。

我想看看是否有人有一个好主意使用NHibernate搜索,我可以指定渴望获取。

0 个答案:

没有答案