i got the following code:
Lucene.Net.Analysis.Analyzer analyzer = new Lucene.Net.Analysis.Standard.StandardAnalyzer(Lucene.Net.Util.Version.LUCENE_29);
var mainQuery = new Lucene.Net.Search.BooleanQuery();
foreach (var str in fields)
{
var parser = new Lucene.Net.QueryParsers.QueryParser(Lucene.Net.Util.Version.LUCENE_29, str, analyzer);
mainQuery.Add(parser.Parse(search +"*"), Lucene.Net.Search.BooleanClause.Occur.SHOULD);
}
Lucene.Net.Search.TopScoreDocCollector collector = Lucene.Net.Search.TopScoreDocCollector.create(21, true);
searcher.Search(mainQuery, collector);
hits = collector.TopDocs().scoreDocs;
and life was good.
until i noticed, that i get results that are also NotActive.
so i said to myself, ok , no problem, lets add another query to the mainQuery just after the for loop
like so:
var parser2 = new Lucene.Net.QueryParsers.QueryParser(Lucene.Net.Util.Version.LUCENE_29, "StateProperties.IsActive", analyzer);
mainQuery.Add(parser2.Parse("True"), Lucene.Net.Search.BooleanClause.Occur.MUST);
unfortunally, this does not work.
anyone can point me to the right direction of doing this ?
i have read about filters, and even managed to apply one, but then i lose the scores ( well, not really lose, but they are way off the original query ).
i also read about TermQueryWrapper, but could not find how to implement that ( so i dont know if thats what i need, even due it seems to be the right direction ).
EDIT: i forgot to mention, all the fields in fields are ANALYZED,
the StateProperties.IsActive is NOT_ANALYZED.
Title:sinatra +StateProperties.IsActive:Truereturns all documents ( except the "Sinatra" document, which its active state is false ). on the other hand,Title:sinatra +StateProperties.IsActive:Falsereturns no documents, even due i KNOW that there is a doc named "sinatra" and its IsActive value is False. btw, how did you start with lucene 3 ? since all i see in the website is Lucene.Net 2.9.2 ? – Dementic Nov 24 '11 at 13:16