I have a site that has very basic forms authentication that I inherited. UserName and Password are stored in DB with Linq to SQL. Password is stored as plain text.
I need to add multiple features: password management, reset-recovery, and some sort of roles or groups to control exposure to content.
I am thinking if I am going to learn how to do this, I would prefer to use a method that is being actively pushed right now and I beleive that is the "Identity" correct?
This seems to want and prefer to use Entity Framework but my app is using Linq to SQL. Can someone please offer a little advice and direction on what route would make sense for me?
Thank you