c# - Azure Mobile Services - UpdateAsync Does Not Update All Fields -
i'm using azure mobile services , running issue "updateasync" method. many of properties storing in item updateasync method works fine. others update ignored. has ran issue before? call making nothing fancy , code below.
it seems issue of property not being updated may limited properties contain number in name. example cp20m 1 of properties not updating through method. property, "weight" updates without issue. both doubles. make sense? way have of updating these fields seems work delete entry , insert new entry. appropriate values properties.
any ideas appreciated.
public async task updateuserprofileitemasync(userprofile userprofile) { await _userprofiletable.updateasync(userprofile); await syncasync(); }
just rename field having problem with. worked me.