How can I do a Filter across multiple fields in Lucene.Net? On one field I simply do:
TermQuery tool = new TermQuery(new Term("Tool", "Nail"));
Filter f = new QueryFilter(tool);
If I now wanted to add a nail length to the filter, how can I do that?
Also, I want the user to be a able to do a search with no search term (i.e. by just choosing a category) how can I do that?