Saturday, 14 September 2013

Display multiple values present in a list in a view in mvc4 without using foreach loop

Display multiple values present in a list in a view in mvc4 without using
foreach loop

var technology = (from tech in context.TECHNOLOGies select new {
tech.NAME,tech.NOTES,tech.FDA_POC,tech.CATEGORY,tech.DESCRIPTION}).ToList();
return View(technology);

No comments:

Post a Comment