Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

hi Please tell me how to apply multiple valued sort order in solr here is my code given below, I am using solr net for this.

private QueryOptions ConstructQueryOperation(SearchCriteria searchCriteria)
    {
        QueryOptions queryOption =new QueryOptions();

        queryOption.Rows = searchCriteria.Pagination.PageSize;

        queryOption.Start = ((searchCriteria.Pagination.CurrentPage+1) - 1) * searchCriteria.Pagination.PageSize;

        if (searchCriteria.SortCriteria != null)
        {
            foreach (var sortItem in searchCriteria.SortCriteria)
            {
                if (sortItem.Value.ToString() == ListSorter.SortingOrder.Descending.ToString())
                {
                    queryOption.AddOrder(new SolrNet.SortOrder(sortItem.Key, Order.DESC));
                }
                else
                {
                    queryOption.AddOrder(new SolrNet.SortOrder(sortItem.Key, Order.ASC));
                }
            }

        }
        return queryOption;

    }

I am getting a bad server request. Can anyone let me know what needs to be done exactly.

share|improve this question
You need to the check the Solr log to see the exact error. It could be a field name mismatch. – Mauricio Scheffer Jun 13 '11 at 14:01
i am able to sort using the following query queryOption.OrderBy =new[] {new SortOrder("CreatedDt", Order.DESC),new SortOrder("State",Order.DESC)}; there is some syntax error i guess – Selwyn Jun 13 '11 at 14:21
please check the Solr log – Mauricio Scheffer Jun 13 '11 at 14:25
@Mauricio you where right i had mentioned wrong field name – Selwyn Jun 13 '11 at 14:28

1 Answer

up vote 1 down vote accepted

It was a field name mismatch. .Net code was referring to a field that didn't exist in the Solr schema.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.