私はObjectListViewを使用します。 RefreshObject()メソッドを使用して、変更されたオブジェクトのみを更新します。ObjectListView内の唯一のオブジェクトを更新します
// 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;
何も起こりません。誰でもそれが問題だと知っていますか?