Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7661763
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T13:38:29+00:00 2026-05-31T13:38:29+00:00

I have problems using the MigratorScriptingDecorator.ScriptUpdate in Entity Framework 4.3.1. When specifying sourceMigration and

  • 0

I have problems using the MigratorScriptingDecorator.ScriptUpdate in Entity Framework 4.3.1.

When specifying sourceMigration and targetMigration only my initial migration gets written, the rest of my migrations become empty.

I have entered a bug report on Microsoft Connect containing reproducing code.
https://connect.microsoft.com/VisualStudio/feedback/details/731111/migratorscriptingdecorator-in-entity-framework-migrations-does-not-respect-sourcemigration-and-targetmigration

I expect MigratorScriptingDecorator.ScriptUpdate("from", "to") to behave exactly like the corresponding PM command

PM> Update-Database -Script -SourceMigration from -TargetMigration to

Should ScriptUpdate be equivalent to Update-Database -Script?
Are there any other ways of generating update scripts from code?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T13:38:30+00:00Added an answer on May 31, 2026 at 1:38 pm

    As noted on the linked Microsoft Connect issue the problem was a reuse of the same DbMigrator on several MigratorScriptingDecorators.

    The original code was

    DbMigrator efMigrator = new DbMigrator(new Configuration());
    var pendingMigrations = efMigrator.GetLocalMigrations().ToList();
    pendingMigrations.Insert(0, "0");
    foreach (var migration in pendingMigrations.Zip(pendingMigrations.Skip(1), Tuple.Create))
    {
        var sql = new MigratorScriptingDecorator(efMigrator).ScriptUpdate(migration.Item1, migration.Item2); // <-- problem here, the efMigrator is reused several times
        Console.WriteLine("Migration from " + (migration.Item1 ?? "<null> ") + " to " + (migration.Item2 ?? "<null> "));
        Console.WriteLine(sql);
        Console.WriteLine("-------------------------------------");
    }
    

    the MigratorScriptingDecorator should be instantiated outside the loop like this:

    DbMigrator efMigrator = new DbMigrator(new Configuration());
    var pendingMigrations = efMigrator.GetLocalMigrations().ToList();
    pendingMigrations.Insert(0, "0");
    var scriptMigrator = new MigratorScriptingDecorator(efMigrator); // <-- now only one MigratorScriptingDecorator is created for the DbMigrator
    foreach (var migration in pendingMigrations.Zip(pendingMigrations.Skip(1), Tuple.Create))
    {
        var sql = scriptMigrator.ScriptUpdate(migration.Item1, migration.Item2);
        Console.WriteLine("Migration from " + (migration.Item1 ?? "<null> ") + " to " + (migration.Item2 ?? "<null> "));
        Console.WriteLine(sql);
        Console.WriteLine("-------------------------------------");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having some problems using cascade operations on hibernate. I have one entity (TripleDBmodel),
I have problems with using the OPTIONAL phrase in the SPARQL statements. When I'm
Have you any problems using it on high concurrency environment? It's really works as
I have problems with running CAS using the proxy mode. However, I don't have
I have some problems sending mails through SMTP using Spring's MailSender interface and the
I have some problems to start programming using cocos2D on linux + android. I
The post summarizes problems in using Screen in Mac's terminal when you have the
I have some problems with a java app i'm developing, i'm using HtmlCleaner 2.2
I am using the new ASP control Chart, but I have some problems with
I am using Pyme to interface with GPGME and have had no problems signing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.