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;
}
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
add a comment |
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
add a comment |
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
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
asp.net-mvc entity-framework model-view-controller asp.net-mvc-5 entity-framework-6
edited Nov 24 '18 at 14:21
ratanmalko
asked Nov 23 '18 at 14:44
ratanmalkoratanmalko
155112
155112
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Nov 24 '18 at 15:05
MartyMarty
34927
34927
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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