Guest User

Untitled

a guest
Jul 20th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public ActionResult anxs40()
  2. {
  3. ViewBag.q = GetQuarter();
  4. var data =
  5. from b in re.wccs
  6. join t in re.targetDistricts on b.district equals t.districtname
  7. let x = new anx40 { wcc = b, targetDistrict = t }
  8. group x by x.wcc.district into grouping
  9. orderby grouping.Key
  10. select grouping;
  11. return View(data);
  12. }
Add Comment
Please, Sign In to add comment