Manually editing database in code first entity framework

后端 未结 4 1555
没有蜡笔的小新
没有蜡笔的小新 2021-02-13 18:55

I have been trying out EF 4.1 (code first) with MVC 3. I am thinking ahead to when the application will need changes. I tested a couple of scenarios. I like the

相关标签:
4条回答
  • 2021-02-13 19:35

    I have had some struggles with this as well. I found that when you let EF create your database for you that a table named dbo.EdmMetadata is created and this is where/how EF tracks the state of the model. I found that if you delete this table after the database has been initially created you will put things into "manual mode" where you can now manually add/remove columns, tables, etc. from your database and EF will not throw the error that you are seeing.

    If however you want to keep having EF update your database as you make changes to your model, you will need to create and call a ContextInitializer class that inherits from either DropCreateDatabaseIfModelChanges or DropCreateDatabaseAlways depending upon the behavior that you want to have happen.

    0 讨论(0)
  • 2021-02-13 19:35

    I know this has been marked as solved but in my case it didn't do the trick.

    Once I deleted dbo.EdmMetadata I was getting a different error:

    Model compatibility cannot be checked because the database does not contain model metadata. Ensure that IncludeMetadataConvention has been added to the DbModelBuilder conventions.

    The way it worked for me was to remove the Initializer class from Application_Start:

    void Application_Start(object sender, EventArgs e)
    {
        // MyDB.SetInitializer<MyContext>(new MyInitializer());
    }
    
    0 讨论(0)
  • 2021-02-13 19:38

    As I can see, there aren't really any methods built-in EF for code-first data evolution.

    For what was of my initial question, the answer lies in removing the schema generation/validation. It is only then that manually editing the code and database may work.

    UPDATE : EF 5.0 now support migrations

    0 讨论(0)
  • 2021-02-13 19:41

    change the class with the new fieldnames, delete the table "EdmMetaData" then recompile your app.

    You will be responsible on modifying the fieldname on your views.

    it works for me.

    0 讨论(0)
提交回复
热议问题