1

I am using a solr.net in my C# application. To get the result I am using the below query in the solr.

 solr.Query(query, queryOptions);

The problem is that, when we have a very long query and then we execute this command that time it produce an error, since it is using Get method and there a liming in the query string of the Get method. Is there any why by which we can use the Post method ?

4

1 に答える 1

1

カスタムクラスの作成方法について説明している、SolrNet 作成者によるこのブログ投稿 - Customizing SolrNetを参照してください。PostSolrConnection

于 2013-04-15T12:21:29.123 に答える