Hibernating Rhinos Ltd
Oren Eini l CEO l Mobile: + 972-52-548-6969
Office: +972-4-622-7811 l Fax: +972-153-4-622-7811
--
You received this message because you are subscribed to the Google Groups "RavenDB - 2nd generation document database" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ravendb+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
If I can't use Transformers, how can I use reduce for query.
My sample object Product has field:
Id, Name, Published, Deleted, List<Categories>, List<Manufacturers>
My sample query:
var query = session.Query<Product>();
query = query.Where(x=>x.Deleted == false);
query = query.Where(x=>x.Categories.Any(new int[1,2]);
I need show List of manufacturers with count of products.
BTW my query has dynamic parameters.
Previously I was using the Transformers and resolved this.
Thanks for the help.
Hibernating Rhinos Ltd
Oren Eini l CEO l Mobile: + 972-52-548-6969
Office: +972-4-622-7811 l Fax: +972-153-4-622-7811
--