iphone - MonoTouch CoolStorage OneToMany caching issue -
i'm experiencing issue coolstorage onetomany relationship being cached when reading list first time, list fails update when data changes later. when restarting app list correct, must caching issue , can't find solution in coolstorage documentation or anywhere. i've pasted unit test code below. i have game class has opponent of type person. there many games, , person can opponent many games. my person class has cslist called opponentgames, @ anytime person can 'get games person opponent'. in unit test first time reference 'person.opponentgames.count', correctly tells me there 1 game. after creating second game , adding person opponent, still reports 1 game opponentgames. if remove first count, test passes, first check result being cached , there it's not updated. i'll appreciate suggestions!! thanks. the sql (sqlite3) setup: csdatabase.executenonquery( "create table person " + "(serverid integer primary k...