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.


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -