Anda di halaman 1dari 12

24/4/2014

Entity Framework Code First Migrations

Data Developer Center


Home Library Learn Downloads Support

Search Data with Bing

United States (English)

Sign in

Community

Forums

Documentation

Videos Articles Books Hands-on Labs Webcasts

Data Developer Center > Learn > Entity Framework > Get Started > Code First Migrations

Code First Migrations


This walkthrough will provide an overview Code First Migrations in Entity Framework. You can either complete the entire walkthrough or skip to the topic you are interested in. The following topics are covered: Building an Initial Model & Database Enabling Migrations Multiple Models Targeting the Same Database Generating & Running Migrations Customizing Migrations Data Motion & Custom SQL Migrating to a Specific Version (Including Downgrade) Generating a SQL Script Generating Idempotent Scripts (EF6 onwards) Automatically Upgrading on Application Startup (MigrateDatabaseToLatestVersion Initializer)

Building an Initial Model & Database


Before we start using migrations we need a project and a Code First model to work with. For this walkthrough we are going to use the canonical Blog and Post model. Create a new MigrationsDemo Console application Add the latest version of the EntityFramework NuGet package to the project Tools > Library Package Manager > Package Manager Console
http://msdn.microsoft.com/en-us/data/jj591621 1/12

24/4/2014

Entity Framework Code First Migrations

Run the Install-Package EntityFramework command Add a Model.cs file with the code shown below. This code defines a single Blog class that makes up our domain model and a BlogContext class that is our EF Code First context

u s i n gS y s t e m . D a t a . E n t i t y ; u s i n gS y s t e m . C o l l e c t i o n s . G e n e r i c ; u s i n gS y s t e m . C o m p o n e n t M o d e l . D a t a A n n o t a t i o n s ; u s i n gS y s t e m . D a t a . E n t i t y . I n f r a s t r u c t u r e ; n a m e s p a c eM i g r a t i o n s D e m o { p u b l i cc l a s sB l o g C o n t e x t:D b C o n t e x t { p u b l i cD b S e t < B l o g >B l o g s{g e t ;s e t ;} } p u b l i cc l a s sB l o g { p u b l i ci n tB l o g I d{g e t ;s e t ;} p u b l i cs t r i n gN a m e{g e t ;s e t ;} } }

Now that we have a model its time to use it to perform data access. Update the Program.cs file with the code shown below.

u s i n gS y s t e m ; u s i n gS y s t e m . C o l l e c t i o n s . G e n e r i c ; u s i n gS y s t e m . L i n q ; u s i n gS y s t e m . T e x t ; n a m e s p a c eM i g r a t i o n s D e m o { c l a s sP r o g r a m { s t a t i cv o i dM a i n ( s t r i n g [ ]a r g s )
http://msdn.microsoft.com/en-us/data/jj591621 2/12

24/4/2014

Entity Framework Code First Migrations

{ u s i n g( v a rd b=n e wB l o g C o n t e x t ( ) ) { d b . B l o g s . A d d ( n e wB l o g{N a m e=" A n o t h e rB l o g"} ) ; d b . S a v e C h a n g e s ( ) ; f o r e a c h( v a rb l o gi nd b . B l o g s ) { C o n s o l e . W r i t e L i n e ( b l o g . N a m e ) ; } } C o n s o l e . W r i t e L i n e ( " P r e s sa n yk e yt oe x i t . . . " ) ; C o n s o l e . R e a d K e y ( ) ; } } }

Run your application and you will see that a MigrationsCodeDemo.BlogContext database is created for you. If SQL Express is installed (included in Visual Studio 2010) then the database is created on your local SQL Express instance (.\SQLEXPRESS). If SQL Express is not installed then Code First will try and use LocalDb ((localdb)\v11.0) - LocalDb is included with Visual Studio 2012. Note: SQL Express will always get precedence if it is installed, even if you are using Visual Studio 2012

http://msdn.microsoft.com/en-us/data/jj591621

3/12

24/4/2014

Entity Framework Code First Migrations

(LocaDb Database)

(SQL Express Database)

Enabling Migrations
Its time to make some more changes to our model. Lets introduce a Url property to the Blog class.
http://msdn.microsoft.com/en-us/data/jj591621 4/12

24/4/2014

Entity Framework Code First Migrations

p u b l i cs t r i n gU r l{g e t ;s e t ;} If you were to run the application again you would get an InvalidOperationException stating The model backing the 'BlogContext' context has changed since the database was created. Consider using Code First Migrations to update the database ( http://go.microsoft.com/fwlink/?LinkId=238269). As the exception suggests, its time to start using Code First Migrations. The first step is to enable migrations for our context. Run the Enable-Migrations command in Package Manager Console This command has added a Migrations folder to our project, this new folder contains two files: The Configuration class. This class allows you to configure how Migrations behaves for your context. For this walkthrough we will just use the default configuration. Because there is just a single Code First context in your project, Enable-Migrations has automatically filled in the context type this configuration applies to. An InitialCreate migration. This migration was generated because we already had Code First create a database for us, before we enabled migrations. The code in this scaffolded migration represents the objects that have already been created in the database. In our case that is the Blog table with a BlogId and Name columns. The filename includes a timestamp to help with ordering. If the database had not already been created this InitialCreate migration would not have been added to the project. Instead, the first time we call Add-Migration the code to create these tables would be scaffolded to a new migration.

Multiple Models Targeting the Same Database


When using versions prior to EF6, only one Code First model could be used to generate/manage the schema of a database. This is the result of a single __MigrationsHistory table per database with no way to identify which entries belong to which model. Starting with EF6, the Configuration class includes a ContextKey property. This acts as a unique identifier for each Code First model. A corresponding column in the __MigrationsHistory table allows entries from multiple models to share the table. By default, this property is set to the fully qualified name of your context.

Generating & Running Migrations


Code First Migrations has two primary commands that you are going to become familiar with. Add-Migration will scaffold the next migration based on changes you have made to your model since the last migration was created Update-Database will apply any pending migrations to the database
http://msdn.microsoft.com/en-us/data/jj591621 5/12

24/4/2014

Entity Framework Code First Migrations

We need to scaffold a migration to take care of the new Url property we have added. The Add-Migration command allows us to give these migrations a name, lets just call ours AddBlogUrl. Run the Add-Migration AddBlogUrl command in Package Manager Console In the Migrations folder we now have a new AddBlogUrl migration. The migration filename is pre-fixed with a timestamp to help with ordering

n a m e s p a c eM i g r a t i o n s D e m o . M i g r a t i o n s { u s i n gS y s t e m ; u s i n gS y s t e m . D a t a . E n t i t y . M i g r a t i o n s ; p u b l i cp a r t i a lc l a s sA d d B l o g U r l:D b M i g r a t i o n { p u b l i co v e r r i d ev o i dU p ( ) { A d d C o l u m n ( " d b o . B l o g s " ," U r l " ,c= >c . S t r i n g ( ) ) ; } p u b l i co v e r r i d ev o i dD o w n ( ) { D r o p C o l u m n ( " d b o . B l o g s " ," U r l " ) ; } } } We could now edit or add to this migration but everything looks pretty good. Lets use Update-Database to apply this migration to the database. Run the Update-Database command in Package Manager Console Code First Migrations will compare the migrations in our Migrations folder with the ones that have been applied to the database. It will see that the AddBlogUrl migration needs to be applied, and run it. The MigrationsDemo.BlogContext database is now updated to include the Url column in the Blogs table.

Customizing Migrations
So far weve generated and run a migration without making any changes. Now lets look at editing the code that gets generated by default.
http://msdn.microsoft.com/en-us/data/jj591621 6/12

24/4/2014

Entity Framework Code First Migrations

Its time to make some more changes to our model, lets add a new Rating property to the Blog class

p u b l i ci n tR a t i n g{g e t ;s e t ;} Let's also add a new Post class

p u b l i cc l a s sP o s t { p u b l i ci n tP o s t I d{g e t ;s e t ;} [ M a x L e n g t h ( 2 0 0 ) ] p u b l i cs t r i n gT i t l e{g e t ;s e t ;} p u b l i cs t r i n gC o n t e n t{g e t ;s e t ;} p u b l i ci n tB l o g I d{g e t ;s e t ;} p u b l i cB l o gB l o g{g e t ;s e t ;} } We'll also add a Posts collection to the Blog class to form the other end of the relationship between Blog and Post

p u b l i cv i r t u a lL i s t < P o s t >P o s t s{g e t ;s e t ;} We'll use the Add-Migration command to let Code First Migrations scaffold its best guess at the migration for us. Were going to call this migration AddPostClass. Run the Add-Migration AddPostClass command in Package Manager Console. Code First Migrations did a pretty good job of scaffolding these changes, but there are some things we might want to change: 1. First up, lets add a unique index to Posts.Title column (Adding in line 22 & 29 in the code below). 2. Were also adding a non-nullable Blogs.Rating column. If there is any existing data in the table it will get assigned the CLR default of the data type for new column (Rating is integer, so that would be 0). But we want to specify a default value of 3 so that existing rows in the Blogs table will start with a decent rating. (You can see the default value specified on line 24 of the code below)
http://msdn.microsoft.com/en-us/data/jj591621 7/12

24/4/2014

Entity Framework Code First Migrations

n a m e s p a c eM i g r a t i o n s D e m o . M i g r a t i o n s { u s i n gS y s t e m ; u s i n gS y s t e m . D a t a . E n t i t y . M i g r a t i o n s ; p u b l i cp a r t i a lc l a s sA d d P o s t C l a s s:D b M i g r a t i o n { p u b l i co v e r r i d ev o i dU p ( ) { C r e a t e T a b l e ( " d b o . P o s t s " , c= >n e w { P o s t I d=c . I n t ( n u l l a b l e :f a l s e ,i d e n t i t y :t r u e ) , T i t l e=c . S t r i n g ( m a x L e n g t h :2 0 0 ) , C o n t e n t=c . S t r i n g ( ) , B l o g I d=c . I n t ( n u l l a b l e :f a l s e ) , } ) . P r i m a r y K e y ( t= >t . P o s t I d ) . F o r e i g n K e y ( " d b o . B l o g s " ,t= >t . B l o g I d ,c a s c a d e D e l e t e :t r u e ) . I n d e x ( t= >t . B l o g I d ) . I n d e x ( p= >p . T i t l e ,u n i q u e :t r u e ) ; A d d C o l u m n ( " d b o . B l o g s " ," R a t i n g " ,c= >c . I n t ( n u l l a b l e :f a l s e ,d e f a u l t V a l u e :3 ) ) ; } p u b l i co v e r r i d ev o i dD o w n ( ) { D r o p I n d e x ( " d b o . P o s t s " ,n e w [ ]{" T i t l e "} ) ; D r o p I n d e x ( " d b o . P o s t s " ,n e w [ ]{" B l o g I d "} ) ; D r o p F o r e i g n K e y ( " d b o . P o s t s " ," B l o g I d " ," d b o . B l o g s " ) ; D r o p C o l u m n ( " d b o . B l o g s " ," R a t i n g " ) ; D r o p T a b l e ( " d b o . P o s t s " ) ; } } } Our edited migration is ready to go, so lets use Update-Database to bring the database up-to-date. This time lets specify the Verbose flag so that you can
http://msdn.microsoft.com/en-us/data/jj591621 8/12

24/4/2014

Entity Framework Code First Migrations

see the SQL that Code First Migrations is running. Run the Update-Database Verbose command in Package Manager Console.

Data Motion / Custom SQL


So far we have looked at migration operations that dont change or move any data, now lets look at something that needs to move some data around. There is no native support for data motion yet, but we can run some arbitrary SQL commands at any point in our script. Lets add a Post.Abstract property to our model. Later, were going to pre-populate the Abstract for existing posts using some text from the start of the Content column.

p u b l i cs t r i n gA b s t r a c t{g e t ;s e t ;} We'll use the Add-Migration command to let Code First Migrations scaffold its best guess at the migration for us. Run the Add-Migration AddPostAbstract command in Package Manager Console. The generated migration takes care of the schema changes but we also want to pre-populate the Abstract column using the first 100 characters of content for each post. We can do this by dropping down to SQL and running an UPDATE statement after the column is added. (Adding in line 12 in the code below)

n a m e s p a c eM i g r a t i o n s D e m o . M i g r a t i o n s { u s i n gS y s t e m ; u s i n gS y s t e m . D a t a . E n t i t y . M i g r a t i o n s ; p u b l i cp a r t i a lc l a s sA d d P o s t A b s t r a c t:D b M i g r a t i o n { p u b l i co v e r r i d ev o i dU p ( ) { A d d C o l u m n ( " d b o . P o s t s " ," A b s t r a c t " ,c= >c . S t r i n g ( ) ) ; S q l ( " U P D A T Ed b o . P o s t sS E TA b s t r a c t=L E F T ( C o n t e n t ,1 0 0 )W H E R EA b s t r a c tI SN U L L " ) ; }
http://msdn.microsoft.com/en-us/data/jj591621 9/12

24/4/2014

Entity Framework Code First Migrations

p u b l i co v e r r i d ev o i dD o w n ( ) { D r o p C o l u m n ( " d b o . P o s t s " ," A b s t r a c t " ) ; } } } Our edited migration looks good, so lets use Update-Database to bring the database up-to-date. Well specify the Verbose flag so that we can see the SQL being run against the database. Run the Update-Database Verbose command in Package Manager Console.

Migrate to a Specific Version (Including Downgrade)


So far we have always upgraded to the latest migration, but there may be times when you want upgrade/downgrade to a specific migration. Lets say we want to migrate our database to the state it was in after running our AddBlogUrl migration. We can use the TargetMigration switch to downgrade to this migration. Run the Update-Database TargetMigration: AddBlogUrl command in Package Manager Console. This command will run the Down script for our AddBlogAbstract and AddPostClass migrations. If you want to roll all the way back to an empty database then you can use the Update-Database TargetMigration: $InitialDatabase command.

Getting a SQL Script


If another developer wants these changes on their machine they can just sync once we check our changes into source control. Once they have our new migrations they can just run the Update-Database command to have the changes applied locally. However if we want to push these changes out to a test server, and eventually production, we probably want a SQL script we can hand off to our DBA. Run the Update-Database command but this time specify the Script flag so that changes are written to a script rather than applied. Well also specify a source and target migration to generate the script for. We want a script to go from an empty database ($InitialDatabase) to the latest version (migration AddPostAbstract). If you dont specify a target migration, Migrations will use the latest migration as the target. If you don't specify a source migrations, Migrations will use the current state of the database.
http://msdn.microsoft.com/en-us/data/jj591621 10/12

24/4/2014

Entity Framework Code First Migrations

Run the Update-Database -Script -SourceMigration: $InitialDatabase -TargetMigration: AddPostAbstract command in Package Manager Console Code First Migrations will run the migration pipeline but instead of actually applying the changes it will write them out to a .sql file for you. Once the script is generated, it is opened for you in Visual Studio, ready for you to view or save.

Generating Idempotent Scripts (EF6 onwards)


Starting with EF6, if you specify SourceMigration $InitialDatabase then the generated script will be idempotent. Idempotent scripts can upgrade a database currently at any version to the latest version (or the specified version if you use TargetMigration). The generated script includes logic to check the __MigrationsHistory table and only apply changes that haven't been previously applied.

Automatically Upgrading on Application Startup (MigrateDatabaseToLatestVersion Initializer)


If you are deploying your application you may want it to automatically upgrade the database (by applying any pending migrations) when the application launches. You can do this by registering the MigrateDatabaseToLatestVersion database initializer. A database initializer simply contains some logic that is used to make sure the database is setup correctly. This logic is run the first time the context is used within the application process (AppDomain). We can update the Program.cs file, as shown below, to set the MigrateDatabaseToLatestVersion initializer for BlogContext before we use the context (Line 14). Note that you also need to add a using statement for the System.Data.Entity namespace (Line 5). When we create an instance of this initializer we need to specify the context type (BlogContext) and the migrations configuration (Configuration) - the migrations configuration is the class that got added to our Migrations folder when we enabled Migrations.

u s i n gS y s t e m ; u s i n gS y s t e m . C o l l e c t i o n s . G e n e r i c ; u s i n gS y s t e m . L i n q ; u s i n gS y s t e m . T e x t ; u s i n gS y s t e m . D a t a . E n t i t y ; u s i n gM i g r a t i o n s D e m o . M i g r a t i o n s ; n a m e s p a c eM i g r a t i o n s D e m o { c l a s sP r o g r a m { s t a t i cv o i dM a i n ( s t r i n g [ ]a r g s ) { D a t a b a s e . S e t I n i t i a l i z e r ( n e wM i g r a t e D a t a b a s e T o L a t e s t V e r s i o n < B l o g C o n t e x t ,C o n f i g u r a t i o n > ( ) ) ;

http://msdn.microsoft.com/en-us/data/jj591621

11/12

24/4/2014

Entity Framework Code First Migrations

u s i n g( v a rd b=n e wB l o g C o n t e x t ( ) ) { d b . B l o g s . A d d ( n e wB l o g{N a m e=" A n o t h e rB l o g"} ) ; d b . S a v e C h a n g e s ( ) ; f o r e a c h( v a rb l o gi nd b . B l o g s ) { C o n s o l e . W r i t e L i n e ( b l o g . N a m e ) ; } } C o n s o l e . W r i t e L i n e ( " P r e s sa n yk e yt oe x i t . . . " ) ; C o n s o l e . R e a d K e y ( ) ; } } } Now whenever our application runs it will first check if the database it is targeting is up-to-date, and apply any pending migrations if it is not.

2014 Microsoft. All rights reserved. Terms of Use

| Trademarks | Privacy Statement | Site Feedback

http://msdn.microsoft.com/en-us/data/jj591621

12/12

Anda mungkin juga menyukai