我有一个在线托管在 CRM 2011 中的 silverlight 应用程序。我有更新电话并以小表格显示两个字段的功能。我要求标记为完整,但我似乎在这里失败了。
我有:
phoneCall.StateCode.Value = 1;
phoneCall.Subject = activity.Subject;
phoneCall.Description = activity.Description;
_context.UpdateObject(phoneCall);
_context.BeginSaveChanges(OnChangesSaved, phoneCall);
主题和描述一样工作和保存,但状态码没有。StateCode 不为空,这是一个现有对象,当前设置为 0(打开)。保存不会影响 StateCode。我在 try-catch 中有这个并且没有报告错误。