Lucene‘加入’怎么做?

发布于 2024-08-21 23:50:33 字数 276 浏览 6 评论 0原文

目前使用 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?

Using Nhibernate.Search at the moment.

Some code for context:

[Indexed]
class foo {
  [DocumentId]
  int id {get;set;}
  bar bar {get;set;}
}

[Indexed]
class bar {
  [DocumentId]
  int id {get;set;}
}

Question:
How to retrieve all foos where foo.bar.id==1 using IFullTextQuery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋意浓 2024-08-28 23:50:33

如果您想将相关信息包含到 foo 索引中,您可以查看 IndexedEmbeddedAttribute。这将允许您查询关系,例如,如果栏对象上有 Name 属性,您可以创建如下查询

IFullTextQuery query = search.CreateFullTextQuery("bar.Name:Arnis");
query.List<foo>();

If you want to include related information into the foo index you may look into the IndexedEmbeddedAttribute. This will allow you to query for relationships such as if there was a Name property on the bar object you could create a query such as this

IFullTextQuery query = search.CreateFullTextQuery("bar.Name:Arnis");
query.List<foo>();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文