is it possible to create a searchQuery where all results gets the same score ? example: I have some document types i'd like to search in, and i'd like the match on the document types to not have any effect on the score.
(nodeTypeAlias: newsItem nodeTypeAlias: activity) this Query give me all the items which has newsItem or activity as nodeTypeAlias, but the problem is that activity Items has a score of 2,7581 and newsItem items has a score of 0,1061. Which gives the activity items a headstart, and that is not wanted.
Ived tried to boost with 0, using lucene.net, but when passed to the QueryParser it converts it to ^.0, and lucene breaks on such query.
So question is: How can i get a field search to not effect the score, but other fields should (these fields i actually search in with the searchQuery).