搜索子对象 nhibernate 搜索?
我有这种关系
供应商 ->有许多产品
供应商和产品都被索引。我需要(老板想要)搜索供应商和所有供应商的产品,并列出结果供应商。
这在 nhibernate.search/Lucene.NET 中可能吗?
I have this kind of relationship
Supplier -> has many Products
Both Supplier is indexed and products are indexed. I need (boss wants to) search through both the Supplier and all of the suppliers' products and list the resulting suppliers.
Is this possible in nhibernate.search/Lucene.NET??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的:http://ayende.com/blog/3992/nhibernate-search
请参阅给定的示例,IndexEmbedded 属性意味着“子”对象或集合也将被索引:
Yes it is possible : http://ayende.com/blog/3992/nhibernate-search
See the given example, IndexEmbedded attribute means the "child" object or collection will be indexed too :