I have used MongoDB before, but never with ASP.NET MVC.
I'm currently stuck trying to implement authentication for a system that will use MongoDB exclusively (so I have no way to leave the user table in the SQL database).
Now I have decided that the decision will be implemented by my own membership provider. However, this requires quite a bit of code. And, since it is related to safety, it is not advisable to drop the wheel if I can avoid it.
Coming from Rails, it would be pretty simple to add something like Devise, configure it to use MongoDB, and call it Day. I could not find anything like this for ASP.NET MVC - I'm not sure if this is an unusual use case, or if my Google-Fu is inadequate.
I donβt need anything, itβs just the ability to create users, check their credentials and protect the controllers from being called from non-authenticated users. Are there any packages that could solve my problem?
source share