I am getting the problem when I combine multiple queries with the Boolean Query of Lucene.net (version 2.9).
Please see the document structure which I indexed.
ID Make Model Price MakeDate CreatedBy
1 Ford Fiesta 240000 06/23/2011 anil
2 Ford Focus 250000 06/20/2011 anil
3 Vauxhall Astra 200000 06/21/2011 anil
4 Ford Focus LX 230000 06/21/2011 anilkumar
5 Ford Focus XI 260000 06/20/2011 anil
My intention is to get the records which are contains focus in any of field ie Model or Make,.. fields and CreatedBy equals to Anil.
For this I written the following queries.
WildcardQuery query4 = new WildcardQuery(new Term("Make", "*focus*"));
WildcardQuery query5 = new WildcardQuery(new Term("Model", "*focus*"));
var queryParser3 = new QueryParser(Version.LUCENE_29, "CreatedBy", analyzer1);
var query3 = queryParser3.Parse("anil");
objBool.Add(query3, BooleanClause.Occur.MUST);
objBool.Add(query4, BooleanClause.Occur.SHOULD);
objBool.Add(query5, BooleanClause.Occur.SHOULD);
When I execute this, Actually I need to get only two records ie 2nd and 5th. But I am getting four records ie other than 4th.
As per my understanding its returning the all the records which are CreatedBy equals to Anil.
Please suggest me how to get the required result and what are the changes need to be done.