I watched the “Creating immersive data experiences with Entity Framework “ video from this year’s BUILD conference and wanted to build out a simple application to test out the new features of EF. But, I’d also like to use the ASP.NET Membership Provider for managing users and roles within my app and I am struggling to find a clean way to include it in my code first approach. Do you guys have any recommendations, suggestions, or examples on how this could be done?

link|improve this question
1  
Don't do that. Membership Provider has its own API = use that API instead of wasting time by reinventing the wheel. – Ladislav Mrnka Sep 28 '11 at 17:47
could you supply a link to the build video referenced? – BozoJoe Oct 6 '11 at 8:11
feedback

3 Answers

I would recommend looking at the MVC3-Boilerplate project on GitHub as it has a good example of creating a custom membership provider that is implemented using EF Code First.

link|improve this answer
feedback

I found this NuGet package which has been very useful.

Quickstart sample for using Altairis Web Security, Entity Framework and Unity in MVC 3. Super easy membership user/role integration. When using this quickstart, the users and role part of your project is completely setup. You can signup, login, edit roles for users etc.

http://www.nuget.org/List/Packages/quickstart.mvc3.unity.ef.altairiswebsecurity

link|improve this answer
feedback

CodeFirstMembership may be what you are looking for.

Features:

  • Based on GUID's
  • Login either by entering Username or Email
  • Username and Email are unique
  • Uses nearly all features from SimpleMembershipProvider
  • Code-First approach
  • All membership fields can be renamed/changed/localized
  • Easily extendable (add additional fields)
  • VB.NET and C# versions available

Also, ShoelaceMVC is a great MVC3 starter project that implements CodeFirstMemebership and comes with a nice layout thanks to Twitter's Bootstrap.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.