Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET Identity 2.0 implementation without Entity Framework

Is there a custom implementation for ASP.NET Identity 2.0 that does not use Entity Framework? I'm hoping for something that does not use a full blown ORM but something along the lines of Dapper. The reason I'm asking is because I am not using Entity Framework anywhere else in the project so I would like to stay away from it if possible.

I know I could work on my own implementation but I do not have the extra time to spend on that.

like image 377
Ryan Rodemoyer Avatar asked Sep 24 '14 20:09

Ryan Rodemoyer


1 Answers

Frustration and lack of other options forced me to do it myself. Here is the project page on GitHub: https://github.com/ryanrodemoyer/AltProvidersForAspNetIdentity2. It's a ways off from a tested usable project but it's a starting point.

like image 199
Ryan Rodemoyer Avatar answered Oct 18 '22 00:10

Ryan Rodemoyer