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();
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);beforecrmContext.SaveChanges();