Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

does any body know how to combine SolrMultipleCriteriaQuery and LocalParams (in SOLRnet)?

I've tried things like thad (don't worry about bad the code, its just to test)

         var test = solr.Query(BuildQuery(parameters), new QueryOptions
                        {
                            FilterQueries = getFilterQueries(),
                            Facet = new FacetParameters
                            {
                                Queries = new[] { 
                    new SolrFacetFieldQuery(new LocalParams {{"ex", "dt"}} + "ju_success") , new SolrFacetFieldQuery(new LocalParams {{"ex", "dt"}} + "dr_success") 
                }
                            }
                        });
    ...

         public ICollection<ISolrQuery> getFilterQueries()
                {
//Creating a List of SolrQueries
                    List<ISolrQuery> ISolrQueryList = new List<ISolrQuery>();

//Adding a new SolrQuery to the List. The Solr Query is contains Parameters for multi select
                    ISolrQueryList .Add(new LocalParams { { "tag", "dt" } } + Query.Field("dr_success").Is("simple"));

//Creating the MultipleCriteriaQuery and setting the Operator "OR"
                    var NewMultipleCriteriaQuery = new SolrMultipleCriteriaQuery(ISolrQueryList , "OR");

//Creating the Resultlist
List<ISolrQuery> Resultlist= new List<ISolrQuery>();
Resultlist.Add(NewMultipleCriteriaQuery);
    return Resultlist();
        }

What I try to do are multi-select-facets with a "OR" operator.

Thanks for all the help!

share|improve this question
for in-depth Solr questions you probably get a faster (better?) response directly though the mailing list. lucene.apache.org/solr/mailing_lists.html – Geert-Jan Oct 19 '11 at 22:49
1  
tips/hints: clean up the code and write a test. – Mauricio Scheffer Oct 21 '11 at 15:42
I've cleaned the code and wrote a test on this, but it doesn't work. Does any ony one know the fail or a solution for my problem? – HW90 Oct 25 '11 at 9:00
1  
@HW90 : please post the test. – Mauricio Scheffer Oct 31 '11 at 1:44

1 Answer

You should be able to add the LocalParams to the SolrMultipleCriteriaQuery.

public ISolrQuery GetFilterQueries()
{
    List<ISolrQuery> iSolrQueryList = new List<ISolrQuery>();
    iSolrQueryList.Add(Query.Field("dr_success").Is("simple"));
    iSolrQueryList.Add(Query.Field("dr_success2").Is("simple2"));
    return new LocalParams { { "tag", "dt" } } + new SolrMultipleCriteriaQuery(iSolrQueryList, "OR");
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.