EF6 Code First Mode Update database schema

Source: Internet
Author: User

Defining entity classes and Context classes

Enter the following command in the package Manager Console

1, Enable-migrations

Enables the data migration feature, which typically generates a migrations folder under the project root directory, which typically has two files in the folder

201408020650593_initialcreate.cs-the data structure before migration, the first half is timestamp

Configuration.cs--related configuration, whether automatic migration is required, etc., default to False

2, Add-migration

Increase the migration point, you will be asked to enter the migration point name after entering this command, which generates the following files in the Migrations folder

201408020650593_[name].cs--[name] is the name of the migration point you entered

3, Update-database-targetmigration: "201408041342375_003"

Upgrade/rollback to Migration point "201408041342375_003"

4, Update-database

Databases are upgraded to the latest schema based on entity and context definitions

5, Update-database-script

Show updated SQL statement definitions, show only, do not perform updates

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.