SolrNet 的多个方面

发布于 2024-09-26 13:11:18 字数 190 浏览 3 评论 0原文

我想使用 SolrNet、城市和类别进行两个方面的查询。 但每个方面都有不同的属性。例如,城市的 mincount 为零,类别的 mincount 为 1。

我如何使用 SolrNet 做到这一点?

我知道 FacetParametes 有 Queries 属性,它可以是查询数组,但是 mincount 呢?

谢谢。

I want to do a query with two facets with SolrNet, City And Category.
But each facet has diferrent properties. For example mincount for city is zero and for category is 1.

How can I do this with SolrNet?

I know FacetParametes has Queries property that can be an array of queries, but what about mincount?

Thanks.

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

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

发布评论

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

评论(1

﹎☆浅夏丿初晴 2024-10-03 13:11:18
solr.Query("something", new QueryOptions {
    Facet = new FacetParameters {
        Queries = new[] {
            new SolrFacetFieldQuery("city") { MinCount = 0 },
            new SolrFacetFieldQuery("category") { MinCount = 1 },
        }
    }
});
solr.Query("something", new QueryOptions {
    Facet = new FacetParameters {
        Queries = new[] {
            new SolrFacetFieldQuery("city") { MinCount = 0 },
            new SolrFacetFieldQuery("category") { MinCount = 1 },
        }
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文