0

我正在使用 Windows Azure 移动服务(c# Win RT 应用程序)。单击按钮时,我想更新特定行(Id)中的某些列。

var person = new Bettie { Id = 5, Score = 4, Score2 = 3 };
await todoTable.UpdateAsync(person);

但是每次我这样做时,其他列都会在我的表中更新为 Null。我怎样才能更新我想要的列并像以前一样保留其他列值?

4

0 回答 0