Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのライブラリを使用しようとしています (非常に良さそうです) が、ブースト関数などのクエリに追加のパラメーターを追加する方法を理解するのに苦労しています。これはどのように行うことができますか?
QueryOptionsのExtraParamsプロパティを使用して、Solrクエリ文字列に任意のパラメーターを追加できます。例:
ISolrOperations<Document> solr = ... var results = solr.Query("myquery", new QueryOptions { ExtraParams = new Dictionary<string, string> { {"bf", "recip(rord(myfield),1,2,3)^1.5"} } });