We have a couple of existing web forms applications that use SQL session state (HttpContext.Current.Session). The sessions are shared between the applications, meaning the user doesn't have to log in twice.
I'm looking to rebuild one of our systems on ASP.Net core and for the moment want to continue using the same session database and method of storing sessions, to support the older applications at the same time.
I've looked around extensively online and it appears the structure of the SQL session database has changed quite a lot.
I'm wondering if it's possible to use the old database with ASP.Net Core? Any help or direction appreciated.