In my ASP.NET Web API app, I have a query that is as such:
var cars = db.Cars.Where(x => x.budget < budget).GroupBy(Cars => Cars.carTypeID).ToList();
Now that I have the list cars that should be full of car objects grouped by carTypeID (This is only a test, I know it's impractical), how do I build the car objects on the client side once I return a response with the list?
EDIT: Results are returned in JSON format fyi