Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Something like this (written from memory without a studio):
var paramLink = …;
var paramFilter = …;
var result Nav.Where(nav => nav.Link == paramLink && nav.Filter == paramFilter)
.GroupBy(nav => new {Link = nav.Link,Vendor = nav.Vendor} , nav => nav)
.OrderBy(grNav => grNav.Key.Vendor).Select(grNav => new {Link = grNav.Key.Link, Vendor = grNav.Key.Vendor, Count = grNav.Count()});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question