使用 NHibernate.Search 获取分数

发布于 2024-08-20 06:34:53 字数 88 浏览 5 评论 0原文

我目前正在尝试使用 NHibernate.Search,但我需要为查询返回的每个结果获取分数。

有人知道如何做到这一点吗?

谢谢。

I'm currently trying to use NHibernate.Search, but i need to get score for each results returned by the query.

Anyone know something about how to do that ?

Thanks.

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

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

发布评论

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

评论(1

薆情海 2024-08-27 06:34:53

如果您正在使用投影,则可以通过将要投影的属性之一作为 ProjectionConstants.SCORE 引用来完成此操作。这将导致 lucene 返回存储在索引中的值,而不是对数据库进行查询。该查询将返回 object[] 值而不是对象的数组列表。

例如。

IFullTextQuery query = search.CreateFullTextQuery("query goes here");

query.SetProjection("FirstName", "LastName", ProjectionConstants.SCORE);

If you are using projections you can do this by having one of the properties that you are projecting to be a ProjectionConstants.SCORE reference. This will cause lucene to return values stored in the index than making a query to the database. The query will return an arraylist of object[] values instead of objects.

for example.

IFullTextQuery query = search.CreateFullTextQuery("query goes here");

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