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













0















(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.











share|improve this question
























  • 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















0















(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.











share|improve this question
























  • 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













0












0








0








(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.











share|improve this question
















(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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 specific SaveChanges 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











  • 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
















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












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
);



);













draft saved

draft discarded


















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















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%2f55071007%2fupdating-certain-properties-of-entity-using-ef6-without-loading-entire-entity%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

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived