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

I have the code for sorting results from Lucene.net, but I need this search result sorted in descending order:

var sort = new Lucene.Net.Search.Sort(
    new Lucene.Net.Search.SortField("date", Lucene.Net.Search.SortField.LONG));
share|improve this question

1 Answer

up vote 5 down vote accepted

Lucene.Net.Search.Sort constructor has an overload to reverse sorting order :

var sort = new Lucene.Net.Search.Sort(
    new Lucene.Net.Search.SortField("date", Lucene.Net.Search.SortField.LONG),
    true);

From : http://www.google.com/codesearch/p?hl=en#sbnThrht2Bk/trunk/Lucene.Net/Search/Sort.cs&q=Lucene.Net.Search.Sort&sa=N&cd=1&ct=rc

share|improve this answer
thanks dear but same code i already apply and problem is alredy solved. – delete my account Apr 1 '11 at 17:23

Your Answer

 
discard

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