I have a single Solr instance for indexing multiple sites content.
While indexing I am populating Website field to be able to perform faceted search on that field for every particular website...and ...
I am facing a problem with the case sensitivity of SolrNet Filters. e.g. new SolrQueryByField("City", "Chicago") returns the results but SolrQueryByField("City", "chicago") does not return anything because "chicago" is in lower ...
As mentioned in the question I am trying to utilize Solr's result grouping feature to (surprise) group my search results. From what I understand Solrnet 0.3.1 supports field collapsing but is ...