Topic by chidambaram CT
In contact workspace, I have field bank_validation Yes/No custom field. Based on condition, I change value of field through workspace add-in.
On save of another add-in, I try to retrieve custom field. But I am not getting the updated value. I have tried RefreshWorkspace() method also,still getting old value not the updated value.
// _recordContext.RefreshWorkspace();
ICfVal icfValBankValidation = ((IEnumerable<ICfVal>)this._contact.CustomField).FirstOrDefault<ICfVal>((Func<ICfVal, bool>)(cf => cf.CfId == 415));
bankvalidation = icfValBankValidation.ValInt;