我目前在Azure中有一个表,其中包含两列Text
和Name
。我正在努力使我的应用程序获取用户输入的数据并创建一个新行并填充两列,这是我的代码:
Table name = new Table { Name = Globals.userName };
await MobileService.GetTable<Table>().InsertAsync(name);
Table text = new Table { Text = Globals.textEntered };
await MobileService.GetTable<Table>().InsertAsync(text);
这会将数据正确地发送到我的表,但它会创建两行而不是一行。如何让它创建一行。