entity framework - EF6 code first add migration - where is the 'snapshot of the current code' stored? -


When I add migration to my first EF 6 code, I get this message

  "Designer code for this migration file contains a snapshot of your current code first model.This snapshot is used to calculate the changes in your model, when you interrupt the next migration. You make additional changes to your model If you want to include this migration, then you can redefine it again by running an 'Add-Migration AddAssignmentProperty'. " 

Is this a snapshot, or is there a way to see it Is this some unchanging blob stored in a secret location?

Your model snapshot table _MigrationHistory column model which is binary blob representation of your model's jizid edmx description.

However, there is nothing called an EDMX which I consider to be legible if you are used for the first code.


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -