目前使用 Nhibernate.Search。
一些上下文代码:
[Indexed]
class foo {
[DocumentId]
int id {get;set;}
bar bar {get;set;}
}
[Indexed]
class bar {
[DocumentId]
int id {get;set;}
}
问题:
如何使用 IFullTextQuery 检索 foo.bar.id==1 的所有 foo?
目前使用 Nhibernate.Search。
一些上下文代码:
[Indexed]
class foo {
[DocumentId]
int id {get;set;}
bar bar {get;set;}
}
[Indexed]
class bar {
[DocumentId]
int id {get;set;}
}
问题:
如何使用 IFullTextQuery 检索 foo.bar.id==1 的所有 foo?