Updating certain properties of entity using EF6 without loading entire entityUpdate a record without first querying?Validation failed for one or more entities. See 'EntityValidationErrors' property for more detailsIgnoring a class property in Entity Framework 4.1 Code FirstEntity Framework - Include Multiple Levels of PropertiesEntity Framework Provider type could not be loaded?Update an entity property when another property changes (after entity is initialized)Entity Framework 5 Updating a RecordHow to update record using Entity Framework 6?Change tracking behavior changed between EF6 and EF4. How to revert back to Ef4 behavior?EF6 Update Attach Needs IsModified else Silent Fail vs EF4ASP.NET MVC: EntityValidationErrors
How does a dynamic QR code work?
Can I hook these wires up to find the connection to a dead outlet?
What is the fastest integer factorization to break RSA?
Am I breaking OOP practice with this architecture?
How does a refinance allow a mortgage to be repaid?
Why were 5.25" floppy drives cheaper than 8"?
How to Prove P(a) → ∀x(P(x) ∨ ¬(x = a)) using Natural Deduction
How to show a landlord what we have in savings?
Is there a hemisphere-neutral way of specifying a season?
What do you call someone who asks many questions?
One verb to replace 'be a member of' a club
Implication of namely
How to stretch the corners of this image so that it looks like a perfect rectangle?
Different meanings of こわい
ssTTsSTtRrriinInnnnNNNIiinngg
How exploitable/balanced is this homebrew spell: Spell Permanency?
What's the meaning of "Sollensaussagen"?
Was the old ablative pronoun "med" or "mēd"?
Processor speed limited at 0.4 Ghz
Why is the sentence "Das ist eine Nase" correct?
Getting extremely large arrows with tikzcd
Can someone clarify Hamming's notion of important problems in relation to modern academia?
Bullying boss launched a smear campaign and made me unemployable
What Exploit Are These User Agents Trying to Use?
Updating certain properties of entity using EF6 without loading entire entity
Update a record without first querying?Validation failed for one or more entities. See 'EntityValidationErrors' property for more detailsIgnoring a class property in Entity Framework 4.1 Code FirstEntity Framework - Include Multiple Levels of PropertiesEntity Framework Provider type could not be loaded?Update an entity property when another property changes (after entity is initialized)Entity Framework 5 Updating a RecordHow to update record using Entity Framework 6?Change tracking behavior changed between EF6 and EF4. How to revert back to Ef4 behavior?EF6 Update Attach Needs IsModified else Silent Fail vs EF4ASP.NET MVC: EntityValidationErrors
(This question has been asked on SO and i have read most of the related posts and try to implement based on the suggestions but still not working)
- I am using EF6 ( not EF Core)
- I am also using DB first approach. So we have
.edmx
file and C# entities are created by edmx template ( not sure if that matters here)
I want to update certain properties of an entity without loading the entire entity.
private async Task Monitor()
var timeStamp = DateTime.UtcNow.AddHours(-8);
var documents = await _dbContext.Documents
.Where(x => x.DocumentCreatedDateTime < timeStamp)
.Select(x => new
x.DocumentID,
x.DocumentCreatedDateTime,
x.ProcessStatusID,
ProcessStatus = x.ProcessStatus.ProcessStatusName,
x.CurrentErrors,
x.ModifiedDateTime,
x.VersionStamp
)
.ToListAsync();
if (documents.Count == 0)
return;
foreach (var document in documents)
var docEntity = new Document();
docEntity.DocumentID = document.DocumentID;
docEntity.CurrentErrors = "Document has error";
docEntity.ProcessStatusID = (int)StatusEnum.Error;
docEntity.ModifiedDateTime = DateTime.UtcNow;
docEntity.VersionStamp = document.VersionStamp;
_dbContext.Documents.Attach(docEntity);
var entry = _dbContext.Entry(docEntity);
entry.Property(p => p.CurrentErrors).IsModified = true;
entry.Property(p => p.ProcessStatusID).IsModified = true;
entry.Property(p => p.ModifiedDateTime).IsModified = true;
entry.Property(p => p.VersionStamp).IsModified = true;
await _dbContext.SaveChangesAsync().ConfigureAwait(false);
Issue
The document entity has several other properties (columns) that are required in the database. But this particular process does not need to update those properties. When SaveChanges()
get invoked i get EntityValidationErrors
error
Update 1
I think i can do db.Configuration.ValidateOnSaveEnabled = false
but not sure is that is the correct approach
The xxxxx field is required.
c# .net entity-framework entity-framework-6
add a comment |
(This question has been asked on SO and i have read most of the related posts and try to implement based on the suggestions but still not working)
- I am using EF6 ( not EF Core)
- I am also using DB first approach. So we have
.edmx
file and C# entities are created by edmx template ( not sure if that matters here)
I want to update certain properties of an entity without loading the entire entity.
private async Task Monitor()
var timeStamp = DateTime.UtcNow.AddHours(-8);
var documents = await _dbContext.Documents
.Where(x => x.DocumentCreatedDateTime < timeStamp)
.Select(x => new
x.DocumentID,
x.DocumentCreatedDateTime,
x.ProcessStatusID,
ProcessStatus = x.ProcessStatus.ProcessStatusName,
x.CurrentErrors,
x.ModifiedDateTime,
x.VersionStamp
)
.ToListAsync();
if (documents.Count == 0)
return;
foreach (var document in documents)
var docEntity = new Document();
docEntity.DocumentID = document.DocumentID;
docEntity.CurrentErrors = "Document has error";
docEntity.ProcessStatusID = (int)StatusEnum.Error;
docEntity.ModifiedDateTime = DateTime.UtcNow;
docEntity.VersionStamp = document.VersionStamp;
_dbContext.Documents.Attach(docEntity);
var entry = _dbContext.Entry(docEntity);
entry.Property(p => p.CurrentErrors).IsModified = true;
entry.Property(p => p.ProcessStatusID).IsModified = true;
entry.Property(p => p.ModifiedDateTime).IsModified = true;
entry.Property(p => p.VersionStamp).IsModified = true;
await _dbContext.SaveChangesAsync().ConfigureAwait(false);
Issue
The document entity has several other properties (columns) that are required in the database. But this particular process does not need to update those properties. When SaveChanges()
get invoked i get EntityValidationErrors
error
Update 1
I think i can do db.Configuration.ValidateOnSaveEnabled = false
but not sure is that is the correct approach
The xxxxx field is required.
c# .net entity-framework entity-framework-6
This question has been asked on SO - What does that mean? Are you repeating an existing question?
– Gert Arnold
Mar 8 at 21:30
not same but similar kind of question
– LP13
Mar 8 at 21:39
Well, if you can ensure that the updates are valid it's OK to disable validation for one specificSaveChanges
call.
– Gert Arnold
Mar 8 at 21:40
@LP13 Better is EF SqlCommand option.
– TanvirArjel
Mar 9 at 2:20
add a comment |
(This question has been asked on SO and i have read most of the related posts and try to implement based on the suggestions but still not working)
- I am using EF6 ( not EF Core)
- I am also using DB first approach. So we have
.edmx
file and C# entities are created by edmx template ( not sure if that matters here)
I want to update certain properties of an entity without loading the entire entity.
private async Task Monitor()
var timeStamp = DateTime.UtcNow.AddHours(-8);
var documents = await _dbContext.Documents
.Where(x => x.DocumentCreatedDateTime < timeStamp)
.Select(x => new
x.DocumentID,
x.DocumentCreatedDateTime,
x.ProcessStatusID,
ProcessStatus = x.ProcessStatus.ProcessStatusName,
x.CurrentErrors,
x.ModifiedDateTime,
x.VersionStamp
)
.ToListAsync();
if (documents.Count == 0)
return;
foreach (var document in documents)
var docEntity = new Document();
docEntity.DocumentID = document.DocumentID;
docEntity.CurrentErrors = "Document has error";
docEntity.ProcessStatusID = (int)StatusEnum.Error;
docEntity.ModifiedDateTime = DateTime.UtcNow;
docEntity.VersionStamp = document.VersionStamp;
_dbContext.Documents.Attach(docEntity);
var entry = _dbContext.Entry(docEntity);
entry.Property(p => p.CurrentErrors).IsModified = true;
entry.Property(p => p.ProcessStatusID).IsModified = true;
entry.Property(p => p.ModifiedDateTime).IsModified = true;
entry.Property(p => p.VersionStamp).IsModified = true;
await _dbContext.SaveChangesAsync().ConfigureAwait(false);
Issue
The document entity has several other properties (columns) that are required in the database. But this particular process does not need to update those properties. When SaveChanges()
get invoked i get EntityValidationErrors
error
Update 1
I think i can do db.Configuration.ValidateOnSaveEnabled = false
but not sure is that is the correct approach
The xxxxx field is required.
c# .net entity-framework entity-framework-6
(This question has been asked on SO and i have read most of the related posts and try to implement based on the suggestions but still not working)
- I am using EF6 ( not EF Core)
- I am also using DB first approach. So we have
.edmx
file and C# entities are created by edmx template ( not sure if that matters here)
I want to update certain properties of an entity without loading the entire entity.
private async Task Monitor()
var timeStamp = DateTime.UtcNow.AddHours(-8);
var documents = await _dbContext.Documents
.Where(x => x.DocumentCreatedDateTime < timeStamp)
.Select(x => new
x.DocumentID,
x.DocumentCreatedDateTime,
x.ProcessStatusID,
ProcessStatus = x.ProcessStatus.ProcessStatusName,
x.CurrentErrors,
x.ModifiedDateTime,
x.VersionStamp
)
.ToListAsync();
if (documents.Count == 0)
return;
foreach (var document in documents)
var docEntity = new Document();
docEntity.DocumentID = document.DocumentID;
docEntity.CurrentErrors = "Document has error";
docEntity.ProcessStatusID = (int)StatusEnum.Error;
docEntity.ModifiedDateTime = DateTime.UtcNow;
docEntity.VersionStamp = document.VersionStamp;
_dbContext.Documents.Attach(docEntity);
var entry = _dbContext.Entry(docEntity);
entry.Property(p => p.CurrentErrors).IsModified = true;
entry.Property(p => p.ProcessStatusID).IsModified = true;
entry.Property(p => p.ModifiedDateTime).IsModified = true;
entry.Property(p => p.VersionStamp).IsModified = true;
await _dbContext.SaveChangesAsync().ConfigureAwait(false);
Issue
The document entity has several other properties (columns) that are required in the database. But this particular process does not need to update those properties. When SaveChanges()
get invoked i get EntityValidationErrors
error
Update 1
I think i can do db.Configuration.ValidateOnSaveEnabled = false
but not sure is that is the correct approach
The xxxxx field is required.
c# .net entity-framework entity-framework-6
c# .net entity-framework entity-framework-6
edited Mar 8 at 21:22
LP13
asked Mar 8 at 21:07
LP13LP13
5,1891166150
5,1891166150
This question has been asked on SO - What does that mean? Are you repeating an existing question?
– Gert Arnold
Mar 8 at 21:30
not same but similar kind of question
– LP13
Mar 8 at 21:39
Well, if you can ensure that the updates are valid it's OK to disable validation for one specificSaveChanges
call.
– Gert Arnold
Mar 8 at 21:40
@LP13 Better is EF SqlCommand option.
– TanvirArjel
Mar 9 at 2:20
add a comment |
This question has been asked on SO - What does that mean? Are you repeating an existing question?
– Gert Arnold
Mar 8 at 21:30
not same but similar kind of question
– LP13
Mar 8 at 21:39
Well, if you can ensure that the updates are valid it's OK to disable validation for one specificSaveChanges
call.
– Gert Arnold
Mar 8 at 21:40
@LP13 Better is EF SqlCommand option.
– TanvirArjel
Mar 9 at 2:20
This question has been asked on SO - What does that mean? Are you repeating an existing question?
– Gert Arnold
Mar 8 at 21:30
This question has been asked on SO - What does that mean? Are you repeating an existing question?
– Gert Arnold
Mar 8 at 21:30
not same but similar kind of question
– LP13
Mar 8 at 21:39
not same but similar kind of question
– LP13
Mar 8 at 21:39
Well, if you can ensure that the updates are valid it's OK to disable validation for one specific
SaveChanges
call.– Gert Arnold
Mar 8 at 21:40
Well, if you can ensure that the updates are valid it's OK to disable validation for one specific
SaveChanges
call.– Gert Arnold
Mar 8 at 21:40
@LP13 Better is EF SqlCommand option.
– TanvirArjel
Mar 9 at 2:20
@LP13 Better is EF SqlCommand option.
– TanvirArjel
Mar 9 at 2:20
add a comment |
0
active
oldest
votes
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%2f55071007%2fupdating-certain-properties-of-entity-using-ef6-without-loading-entire-entity%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f55071007%2fupdating-certain-properties-of-entity-using-ef6-without-loading-entire-entity%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
This question has been asked on SO - What does that mean? Are you repeating an existing question?
– Gert Arnold
Mar 8 at 21:30
not same but similar kind of question
– LP13
Mar 8 at 21:39
Well, if you can ensure that the updates are valid it's OK to disable validation for one specific
SaveChanges
call.– Gert Arnold
Mar 8 at 21:40
@LP13 Better is EF SqlCommand option.
– TanvirArjel
Mar 9 at 2:20