EF migrations ignore data changesEF Code-First Migration - Ignore PropertyReset Entity-Framework MigrationsEF Migrations: Rollback last applied migration?EF Data migrations won't detect changes when adding new migrationEntity Framework code-first: migration fails with update-database, forces unneccessary(?) add-migrationListing migrations shows no migrations found, why?Migration Generated that Already Matches SchemaMigrating Entity Framework without Migration FilesEF Core MigrationsEntity framework core, code first migration with data migration

Is it necessary to use pronouns with the verb "essere"?

How can I write humor as character trait?

Why does Carol not get rid of the Kree symbol on her suit when she changes its colours?

Which was the first story featuring espers?

Why do ¬, ∀ and ∃ have the same precedence?

What is the highest possible scrabble score for placing a single tile

Strong empirical falsification of quantum mechanics based on vacuum energy density?

What is Cash Advance APR?

Giving feedback to someone without sounding prejudiced

Which Article Helped Get Rid of Technobabble in RPGs?

What fields between the rationals and the reals allow a good notion of 2D distance?

A Trivial Diagnosis

Taxes on Dividends in a Roth IRA

A variation to the phrase "hanging over my shoulders"

When were female captains banned from Starfleet?

Short story about a deaf man, who cuts people tongues

What features enable the Su-25 Frogfoot to operate with such a wide variety of fuels?

Does Doodling or Improvising on the Piano Have Any Benefits?

What is the English pronunciation of "pain au chocolat"?

Shouldn’t conservatives embrace universal basic income?

What does Apple's new App Store requirement mean

What are some good ways to treat frozen vegetables such that they behave like fresh vegetables when stir frying them?

Is it allowed to activate the ability of multiple planeswalkers in a single turn?

Does the reader need to like the PoV character?



EF migrations ignore data changes


EF Code-First Migration - Ignore PropertyReset Entity-Framework MigrationsEF Migrations: Rollback last applied migration?EF Data migrations won't detect changes when adding new migrationEntity Framework code-first: migration fails with update-database, forces unneccessary(?) add-migrationListing migrations shows no migrations found, why?Migration Generated that Already Matches SchemaMigrating Entity Framework without Migration FilesEF Core MigrationsEntity framework core, code first migration with data migration













0















I have an initial DB migration. Now I need to create the first incremental migration. When I create the first incremental migration with



add-migration Incremental1


it contains not only the table changes but all data changes as well. For example for rows that were added in between into the table it contains DeleteData commands:



migrationBuilder.DeleteData(
table: "SystemResources",
keyColumn: "Id",
keyValue: 1);


Is there some setting for generating only table changes (added/removed columns) and ignoring all data changes (inserted data rows)?










share|improve this question




























    0















    I have an initial DB migration. Now I need to create the first incremental migration. When I create the first incremental migration with



    add-migration Incremental1


    it contains not only the table changes but all data changes as well. For example for rows that were added in between into the table it contains DeleteData commands:



    migrationBuilder.DeleteData(
    table: "SystemResources",
    keyColumn: "Id",
    keyValue: 1);


    Is there some setting for generating only table changes (added/removed columns) and ignoring all data changes (inserted data rows)?










    share|improve this question


























      0












      0








      0








      I have an initial DB migration. Now I need to create the first incremental migration. When I create the first incremental migration with



      add-migration Incremental1


      it contains not only the table changes but all data changes as well. For example for rows that were added in between into the table it contains DeleteData commands:



      migrationBuilder.DeleteData(
      table: "SystemResources",
      keyColumn: "Id",
      keyValue: 1);


      Is there some setting for generating only table changes (added/removed columns) and ignoring all data changes (inserted data rows)?










      share|improve this question
















      I have an initial DB migration. Now I need to create the first incremental migration. When I create the first incremental migration with



      add-migration Incremental1


      it contains not only the table changes but all data changes as well. For example for rows that were added in between into the table it contains DeleteData commands:



      migrationBuilder.DeleteData(
      table: "SystemResources",
      keyColumn: "Id",
      keyValue: 1);


      Is there some setting for generating only table changes (added/removed columns) and ignoring all data changes (inserted data rows)?







      .net-core ef-migrations






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 17 hours ago







      Martin Staufcik

















      asked 17 hours ago









      Martin StaufcikMartin Staufcik

      2,05311626




      2,05311626






















          1 Answer
          1






          active

          oldest

          votes


















          0














          The solution is to:



          1. disable seeding of data by commenting out all modelBuilder.Entity<T>().HasData statements,

          2. create the incremental migration with add-migration,

          3. manually remove all DeleteData / InsertData commands from the incremental migration,

          4. run update-database.

          After this, the seed data is no longer part of the model snapshopt (<Database>ModelSnapshot.cs file) and is therefore no longer tracked by migrations.



          This also means the next incremental migration will not contain any DeleteData / InsertData statements.






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55278697%2fef-migrations-ignore-data-changes%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            The solution is to:



            1. disable seeding of data by commenting out all modelBuilder.Entity<T>().HasData statements,

            2. create the incremental migration with add-migration,

            3. manually remove all DeleteData / InsertData commands from the incremental migration,

            4. run update-database.

            After this, the seed data is no longer part of the model snapshopt (<Database>ModelSnapshot.cs file) and is therefore no longer tracked by migrations.



            This also means the next incremental migration will not contain any DeleteData / InsertData statements.






            share|improve this answer





























              0














              The solution is to:



              1. disable seeding of data by commenting out all modelBuilder.Entity<T>().HasData statements,

              2. create the incremental migration with add-migration,

              3. manually remove all DeleteData / InsertData commands from the incremental migration,

              4. run update-database.

              After this, the seed data is no longer part of the model snapshopt (<Database>ModelSnapshot.cs file) and is therefore no longer tracked by migrations.



              This also means the next incremental migration will not contain any DeleteData / InsertData statements.






              share|improve this answer



























                0












                0








                0







                The solution is to:



                1. disable seeding of data by commenting out all modelBuilder.Entity<T>().HasData statements,

                2. create the incremental migration with add-migration,

                3. manually remove all DeleteData / InsertData commands from the incremental migration,

                4. run update-database.

                After this, the seed data is no longer part of the model snapshopt (<Database>ModelSnapshot.cs file) and is therefore no longer tracked by migrations.



                This also means the next incremental migration will not contain any DeleteData / InsertData statements.






                share|improve this answer















                The solution is to:



                1. disable seeding of data by commenting out all modelBuilder.Entity<T>().HasData statements,

                2. create the incremental migration with add-migration,

                3. manually remove all DeleteData / InsertData commands from the incremental migration,

                4. run update-database.

                After this, the seed data is no longer part of the model snapshopt (<Database>ModelSnapshot.cs file) and is therefore no longer tracked by migrations.



                This also means the next incremental migration will not contain any DeleteData / InsertData statements.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 15 hours ago

























                answered 16 hours ago









                Martin StaufcikMartin Staufcik

                2,05311626




                2,05311626





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55278697%2fef-migrations-ignore-data-changes%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript