In ASP.NET 5 MVC 6 Beta 8 I need to read a session variable in in my _Layout.cshtml or alternatively get a reference to the current HttpContext.
Take note: In ASP.NET 5 referencing the Session object has changed significantly from ASP.net 4 as detailed in this question
The Context object has also been renamed to HttpContext between Beta7 and Beta8.
In My current controller I currently save the session variable like this
public IActionResult Index()
{
HttpContext.Session.SetInt32("Template", (id));
}
In my _Layout.cshtml I need to read the above session variable. I need to reference the current HttpContext somehow e.g
HttpContext.Current.Session.GetInt32("Template");
but I don't know how to the get the current HttpContext in a cshtml file.