Hi all,
I'm trying to update a Dynamics entity via the OData End Points. The console application is throwing an error when I go to save the entity and the return message says something along the lines of ...
"update not allowed for field 'xyz'"
I currently fetch a single object from the OData end points by filtering it via property values and then I set the entity property I need to change to the desired value.
var entity = context.XYZ.AsEnumerable().FirstOrDefault(x => x.email == email);
entity.propertyToUpdate = "hello world!";
context.UpdateObject(entity);
context.SaveChanges();
Could there possibly be a property I need to change in the entity somewhere or in Dynamics?
Thanks you!
*This post is locked for comments
I have the same question (0)