I have implemented controller rendering in sitecore 8.1 MVC. I am getting the following error in Index method:
ERROR: The given key was not present in the dictionary
Code:
{
var context = new SitecoreContext();
var Model = context.GetCurrentItem<BasePage>(); //Error comes here
return View(Model);
Did I miss any glass mapper file? Any suggestions?