Skip to content

Instantly share code, notes, and snippets.

@guntidheerajkumar
Created July 12, 2016 06:38
Show Gist options
  • Save guntidheerajkumar/bdb33654318229cd8dbc0343293ed47c to your computer and use it in GitHub Desktop.
Save guntidheerajkumar/bdb33654318229cd8dbc0343293ed47c to your computer and use it in GitHub Desktop.
public class HomeController : Controller
{
private PersonDBContext context;
public HomeController(PersonDBContext context)
{
this.context = context;
}
public IActionResult Index()
{
var data = context.Person.ToList();
return View(data);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment