edvin
11/09/2017, 1:17 PMval list = bind(SomeObject::list)
, you will get a Property<ObservableList<SomeObject>>
. That property will contain the original list. If you make changes to the actual list, you're modifying the original list. If you however change list.value
in your viewmodel to some other list, this list will be pushed back into the domain object on commit, just like any other property.