We are able to create new entities without any issues, but updating an existing entity in a plugin this does not appear to be working. This is for CRM 2011.

var crmContext = new CustomCrmContext(service);

var contact = crmContext.Contact.FirstOrDefault(c=>c.Id == targetEntity.Id);

contact.new_CustomField = "Updated";

crmContext.SaveChanges();
link|improve this question

54% accept rate
feedback

4 Answers

up vote 6 down vote accepted

You have to mark the object as modified in order to get it submitted to the server. See OrganizationServiceContext.UpdateObject (Entity)

You should add crmContext.UpdateObject(contact); before crmContext.SaveChanges();

link|improve this answer
<Message>Unexpected exception from plug-in (Execute): Microsoft.Xrm.Sdk.SaveChangesException: An error occured while processing this request.</Message> – Chad Feb 22 '11 at 15:00
Above is what I get when I do an UpdateObject. Again, I can add a new record without any issue. It is just updating an existing object that doesn't seem to be working. Any ideas? – Chad Feb 22 '11 at 15:01
Can you please describe how you registered your plugin? Is it registered for update of contact? The SaveChangesException has a property "Results" - which items are included? – ccellar Mar 30 '11 at 15:36
1  
I had the same problem. After I added context.UpdateObject(entity) before context.SaveChanges() it worked. – nang May 19 '11 at 9:59
feedback

No need to download the whole Contact record if you already have the Id and you just need to update a field or two. You also don't need the OrganizationServiceContext - just the Service. Try something like:

var c = new contact() {
  Id = targetEntity.Id,
  new_CustomField = "Updated"
}

service.Update(c);

This will save the roundtrip of querying for the contact first.

link|improve this answer
feedback

LINQ is fine, just create the new object or list and loop the list in the linq and update:

using (var crm = new XrmServiceContext(service)){
var foo = crm.nmipcs_productpriceitemSet
    .Where(ppis => ppis.nmipcs_Account.Id == account.Id).ToList();

foreach (var nmipcsProductpriceitem in foo){
    var f = new nmipcs_productpriceitem
    {
    Id = nmipcsProductpriceitem.Id                 
    ,
    nmipcs_PriceSalesChannel = (decimal) 9.99
    };

    service.Update(f);
}
    }
link|improve this answer
feedback

According to the post below, retrieving an entity via LINQ and then updating it is apparently not allowed by design. LINQ is designed only for querying.

http://social.microsoft.com/Forums/en-US/crmdevelopment/thread/682a7be2-1c07-497e-8f58-cea55c298062/

link|improve this answer
This is not true. I think there is some misunderstanding in this thread. The DataContext in the SDK is fully based on the CRM webservice – ccellar May 17 at 5:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.