I have models based on EF Code First and I want to use them with the default MembershipProvider, but I don't know how to write the model correctly, so it won't erase all my data on recreating the tables when there were changes made to the model.
|
|
Currently (EF 4.1 CTP) EF Code First doesn't have that option. It always drops a table if you made changes to model. Update: EF 4.1 RTM allows you to create a custom database initializer and specify creation of db objects and data seeding. |
||||
|
|
|
Have a look at this project http://codefirstmembership.codeplex.com/ It has entity classes for users and roles, as well as a roleprovider and membershipprovider implementation. If you include the users and roles in your datacontext class the tables will be created in your database. |
|||
|
|
Your question has two parts.
as for How to preserve existing data when model changes, as far as with EF 4.0/ asp.net mvc 3, database migrations are not yet supported. You will have to move to asp.net mvc 4.0/ EF 4.3 where database migrations are supported or use similar alternatives , but its still beta release. asp.net mvc 4.0 database migration in scott gu's blog Now coming to the point on how to use asp.net membership provider with EF code first. There are couple of challenges :
|
||||
|
|
|
If you are using SQL Server, then check this : http://www.paragm.com/ef-v4-1-code-first-and-asp-net-membership-service/ |
|||
|
|
|
There is also my library which basically allows you to define how almost everything should be configured including: key type, where the your context object is, and where your user/role entities are located. Extendable using abstract base classes or interfaces. Also works quite well out of the box with repository pattern / unit of work / IoC Containers. |
|||
|
|
|
In my DbContext.cs file I have a Seed function where I call the
The ApplicationServices class
Thanks to @ImarSpaanjaars http://imar.spaanjaars.com/563/using-entity-framework-code-first-and-aspnet-membership-together. |
||||
|
|