I have Realm objects with members that are sets (c# ISet<>
, schema type "array"
with "uniqueItems": "true"
). When an element is added to or removed from the set, I used to get PropertyChanged
events. Now (dot-net driver v10.21.1) I don’t.
Is this change intentional? Do I now have to register for CollectionChanged as well as PropertyChanged?
Update: Hmm, no, maybe this is a bug after all? Because I also have some IList<>
members (without the "uniqueItems"
constraint) that no longer get PropertyChanged
events either, and they don’t seem to support CollectionChanged
…?