With LINQ i'm doing the following to select my suppliers and their product count:
from s in context.Suppliers
join p in context.Products on s equals p.Supplier
group s by s.CompanyName
into result
select new {
SupplierName = result.Key,
ProductCount = result.Count()
}
this works just fine, but i want to select some more properties from my supplier table, SupplierId and SupplierAddress, like:
....
select new {
SupplierName = result.Key,
ProductCount = result.Count(),
SupplierId = ..,
SupplierAddress = ..,
}
Does anyone know how to do this?
Thanks for helping!