
Untitled
By: a guest on
Oct 4th, 2012 | syntax:
C# | size: 0.30 KB | hits: 47 | expires: Never
//
// GET: /Fix/Summary/
[ChildActionOnly]
public ActionResult Summary() {
var fixes = db.Fixes.Include(f => f.Currency).Include(f => f.Metal).Where(c => c.Currency.Code == "GBP");
return PartialView(fixes.ToList());
}