标签: c# azure windows-8 azure-mobile-services
我正在使用Windows Azure移动服务(c#Win RT应用程序)。 单击按钮时,我想更新特定行(Id)中的某些列。
var person = new Bettie { Id = 5, Score = 4, Score2 = 3 }; await todoTable.UpdateAsync(person);
但每次我这样做时,其他列都会在我的表中更新为Null。我怎样才能更新我想要的列并像以前一样保留其他列值?