Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what to use as asp.net membership backend ? RavenDB or SqlServer

I have a project in which most of data are planned to be saved in RavenDB . the problem is membership . I couldn't find any ( trusted , supported by a team , popular ) membership provider in RavenDB ,and I don't want to create a custom one ( I'm not sure I can create one as perfect as asp.net's default ) . So I think the only way is to use a sql server database Alongside RavenDB to support membership operations .

So is there any membership provider for ravenDB that I've missed ?

I don't feel comfortable with this solution (using 2 databases ) .I appreciate any advice or solution .

like image 848
mohsen dorparasti Avatar asked Oct 07 '22 17:10

mohsen dorparasti


2 Answers

So is there any membership provider for ravenDB that I've missed ?

There's this one on github:

https://github.com/martijnboland/RavenDBMembership

like image 139
Rup Avatar answered Oct 12 '22 10:10

Rup


I don't think this is neccessarily the best option...

But as an alternative view point you could perhaps try an XML based membership provider. I have used one a few years back for a very small bespoke CMS that didn't have a database backend.

It's probably not suitable for you, as I'm guessing on of the reasons for chosing RavenDB is for it's scalability etc i.e. your perhaps not building a small site - but worth a mention just in case.

like image 42
Alex KeySmith Avatar answered Oct 12 '22 10:10

Alex KeySmith