I have saved some rows of data in a list named "viewListNextWeek". I want to send this list to the next razor page, where I'm redirecting to it by
return RedirectToPage("../Food/nextWeekFood");
Based on this, I have tried
HttpContext.Session.Set<List<reserveInfo>>("List", viewListNextWeek);
But I got the error
Error CS0308 The non-generic method 'ISession.Set(string, byte[])' cannot be used with type arguments
I also read this, but I don't understand very well what to do.