使用 Fluent NHibernate Search 从搜索中排除对象的最佳方法

发布于 2024-09-16 20:45:39 字数 99 浏览 3 评论 0原文

我有一个带有布尔属性的类。

我想从搜索结果中排除具有错误值的实例。

使用 Fluent NHibernate Search 执行此操作的最佳方法是什么?

I have a class with a boolean property.

I want to exclude instance with a false value from search result.

What is the best way to do that with Fluent NHibernate Search ?

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

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

发布评论

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

评论(1

肩上的翅膀 2024-09-23 20:45:39

我认为您有 3 种方法

  1. http://docs.jboss.org/hibernate/stable/search/reference/en-US/
  2. 可以使用全文过滤器(更多信息)
  3. 使用 Lucene 查询的“某种 where 子句”

使用全文过滤器似乎是最好的解决方案。不幸的是,它没有在 Fluent Nhibernate Search 中实现。我发现了一个 hack,希望能够为添加此功能做出贡献。

I think you have 3 ways of doing that

  1. exclude instance from being store in the lucene index
  2. using full text filter (more here)
  3. "kind of where clause" using Lucene Query

Using full text filter seems to be the best solution. Unfortunately, it's not implemented in Fluent Nhibernate Search. I found a hack and hope to be able to contribute adding this feature.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文