私はObjectListViewを使用します。メソッド RefreshObject() を使用して、変更されたオブジェクトのみを更新します。
// The difference between associations and updatedAssociations is only in
// one item, which ID field remains the same.
// So i find an updated item by ID in the associations (before updating).
//And say Object ListView to to refresh this item.
var associationToUpdate = associations.References.Where(
x => x.ID == associationIDToUpdate).FirstOrDefault();
olvAssociations.RefreshObject(associationToUpdate);
// And only after this set the model to updated model
associations = updatedAssociations;
しかし、何も起こりません。それが問題だと誰かが知っていますか?