Entity Framework 6 - Update DB record by copying another DB record





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I just started with Asp.NET MVC & EF and I am guessing there must be an easy solution for what I am trying to do.



What I want to do:



Update an existing db record with the values of another db record.



In my Post Controller action I pass the ID of the original record and the ID of the record the should be copied over the original one.



var orgRecord = ctx.Model.Where(x => x.ID == vm.ID)...
var copyRecord = ctx.Model.Where(x => x.ID == vm.IDtoCopy)...


I have tried different approaches but I always get an error that ID "is part of the object's key information and cannot be modified"



Here are some of my tries:



 orgRecord.ID = copyRecord.ID

ctx.Entry(orgRecord).CurrentValues.SetValues(copyRecord);
ctx.Entry(orgRecord).State = EntityState.Modified;
ctx.Entry(orgRecord).Property(x => x.ID).IsModified = false;


What do I need to do in order to copy all properties but leaving the primary key untouched?



Thank you.










share|improve this question































    0















    I just started with Asp.NET MVC & EF and I am guessing there must be an easy solution for what I am trying to do.



    What I want to do:



    Update an existing db record with the values of another db record.



    In my Post Controller action I pass the ID of the original record and the ID of the record the should be copied over the original one.



    var orgRecord = ctx.Model.Where(x => x.ID == vm.ID)...
    var copyRecord = ctx.Model.Where(x => x.ID == vm.IDtoCopy)...


    I have tried different approaches but I always get an error that ID "is part of the object's key information and cannot be modified"



    Here are some of my tries:



     orgRecord.ID = copyRecord.ID

    ctx.Entry(orgRecord).CurrentValues.SetValues(copyRecord);
    ctx.Entry(orgRecord).State = EntityState.Modified;
    ctx.Entry(orgRecord).Property(x => x.ID).IsModified = false;


    What do I need to do in order to copy all properties but leaving the primary key untouched?



    Thank you.










    share|improve this question



























      0












      0








      0








      I just started with Asp.NET MVC & EF and I am guessing there must be an easy solution for what I am trying to do.



      What I want to do:



      Update an existing db record with the values of another db record.



      In my Post Controller action I pass the ID of the original record and the ID of the record the should be copied over the original one.



      var orgRecord = ctx.Model.Where(x => x.ID == vm.ID)...
      var copyRecord = ctx.Model.Where(x => x.ID == vm.IDtoCopy)...


      I have tried different approaches but I always get an error that ID "is part of the object's key information and cannot be modified"



      Here are some of my tries:



       orgRecord.ID = copyRecord.ID

      ctx.Entry(orgRecord).CurrentValues.SetValues(copyRecord);
      ctx.Entry(orgRecord).State = EntityState.Modified;
      ctx.Entry(orgRecord).Property(x => x.ID).IsModified = false;


      What do I need to do in order to copy all properties but leaving the primary key untouched?



      Thank you.










      share|improve this question
















      I just started with Asp.NET MVC & EF and I am guessing there must be an easy solution for what I am trying to do.



      What I want to do:



      Update an existing db record with the values of another db record.



      In my Post Controller action I pass the ID of the original record and the ID of the record the should be copied over the original one.



      var orgRecord = ctx.Model.Where(x => x.ID == vm.ID)...
      var copyRecord = ctx.Model.Where(x => x.ID == vm.IDtoCopy)...


      I have tried different approaches but I always get an error that ID "is part of the object's key information and cannot be modified"



      Here are some of my tries:



       orgRecord.ID = copyRecord.ID

      ctx.Entry(orgRecord).CurrentValues.SetValues(copyRecord);
      ctx.Entry(orgRecord).State = EntityState.Modified;
      ctx.Entry(orgRecord).Property(x => x.ID).IsModified = false;


      What do I need to do in order to copy all properties but leaving the primary key untouched?



      Thank you.







      asp.net-mvc entity-framework model-view-controller asp.net-mvc-5 entity-framework-6






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 24 '18 at 14:21







      ratanmalko

















      asked Nov 23 '18 at 14:44









      ratanmalkoratanmalko

      143112




      143112
























          1 Answer
          1






          active

          oldest

          votes


















          0














          Try following: Get the copyRecord with AsNoTracking(), then set the ID to the original value, then attach to context, set State to Modified and save.






          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%2f53448747%2fentity-framework-6-update-db-record-by-copying-another-db-record%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














            Try following: Get the copyRecord with AsNoTracking(), then set the ID to the original value, then attach to context, set State to Modified and save.






            share|improve this answer




























              0














              Try following: Get the copyRecord with AsNoTracking(), then set the ID to the original value, then attach to context, set State to Modified and save.






              share|improve this answer


























                0












                0








                0







                Try following: Get the copyRecord with AsNoTracking(), then set the ID to the original value, then attach to context, set State to Modified and save.






                share|improve this answer













                Try following: Get the copyRecord with AsNoTracking(), then set the ID to the original value, then attach to context, set State to Modified and save.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 24 '18 at 15:05









                MartyMarty

                34927




                34927
































                    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%2f53448747%2fentity-framework-6-update-db-record-by-copying-another-db-record%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







                    這個網誌中的熱門文章

                    Hercules Kyvelos

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud