Guest User

Untitled

a guest
Nov 21st, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public class HomeController : Controller
  2. {
  3. public ActionResult Index()
  4. {
  5. AutoRTGSEntities_1 dc = new AutoRTGSEntities_1();
  6. //dc.policies.Where(cb => cb.Section_Key.Contains("SenderBIC"));
  7. return View(dc.policies.Where(cb => cb.Policy_Section.Contains("RTGS")).ToList()); //get RTGS policy section data
  8.  
  9. }
  10.  
  11. @model IEnumerable<Swift_MT_103.policy>
  12. @{
  13. ViewBag.Title = "Home Page";
  14. }
Add Comment
Please, Sign In to add comment