使用 Fluent NHibernate Search 从搜索中排除对象的最佳方法
我有一个带有布尔属性的类。
我想从搜索结果中排除具有错误值的实例。
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您有 3 种方法
使用全文过滤器似乎是最好的解决方案。不幸的是,它没有在 Fluent Nhibernate Search 中实现。我发现了一个 hack,希望能够为添加此功能做出贡献。
I think you have 3 ways of doing that
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.