11/10/2019
In .Net Core 3, If you set session and when you try to get session value back,if you get null value, please make you added the following in Startup.cs file
services.AddSession(); and app.UseSession();
and also make sure to add the following code
services.Configure(options =>
{
options.CheckConsentNeeded = context => false;
options.MinimumSameSitePolicy = SameSiteMode.None;
});
Best of luck😎