I'm currently starting from scratch rebuilding a 15 year old website from .net framework 4.8 into .net 9 (blazor server).
The old authentication data is in a SQL db together with other data my website uses.
The .net 9 aspnet identity tables are named and structured differently.
Is there a way to reuse the old aspnet identity tables in this new project? I want to avoid resetting all the users their passwords.
In the new project I tried using the old db without any changes, but it seems it doesn't recognize the old aspnet identity tables.