How would you implement multi-valued dynamic fields with SolrNet?
I know with dynamic fields I can set them up like:
[SolrField("price_")]
public IDictionary<string, decimal> Price { get; set; }
And multivalued fields like:
[SolrField("fieldname")]
public ICollection<string> MyField { get; set; }
So I tried:
[SolrField("fqe_")]
public IDictionary<string, ICollection<string>> EqParam { get; set; }
Which failed when I tried adding the document.
Any ideas?
Thanks.