Advertisement
Guest User

Untitled

a guest
Oct 4th, 2012
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1.         //
  2.         // GET: /Fix/Summary/
  3.  
  4.         [ChildActionOnly]
  5.         public ActionResult Summary() {
  6.  
  7.            
  8.             var fixes = db.Fixes.Include(f => f.Currency).Include(f => f.Metal).Where(c => c.Currency.Code == "GBP");
  9.             return PartialView(fixes.ToList());
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement