- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在插入我的 Azure 移动服务 SQL 数据库,它工作正常,但我想知道是否存在错误,以便我可以更正它。
如何从 InsertAsync
获取状态以查看它是成功还是失败?
public static MobileServiceClient MobileService = new MobileServiceClient(
"https://YOUR-DOMAIN.azure-mobile.net/",
"YOUR-KEY"
);
static IMobileServiceTable<Product> productTable = MobileService.GetTable<Product>();
Product product = new Product {
name = NPDName.Text,
description = NPDDescription.Text,
price = NPDPriceExkl.Text,
tax = NPDTax.Text,
stock = NPDStock.Text,
available = NPDCBAvailable.Checked,
active = true
};
productTable.InsertAsync(product);
最佳答案
How do i get the status from the InsertAsync to see if it succeed or failed?
InsertAsync
返回一个任务
。如果你想知道它的状态,你需要await
它。如果失败,则会传播异常:
public async Task InsertAsync()
{
Product product = new Product
{
name = NPDName.Text,
description = NPDDescription.Text,
price = NPDPriceExkl.Text,
tax = NPDTax.Text,
stock = NPDStock.Text,
available = NPDCBAvailable.Checked,
active = true
};
await productTable.InsertAsync(product);
}
关于c# - Azure 移动服务 InsertAsync 获取状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30692495/
我正在使用 Azure 移动应用程序中的 IMobileServiceSyncTable。在 InsertAsync 操作中,在后端服务器端,我对数据进行了一些验证,如果验证失败,我想从服务器端抛出异
我正在插入我的 Azure 移动服务 SQL 数据库,它工作正常,但我想知道是否存在错误,以便我可以更正它。 如何从 InsertAsync 获取状态以查看它是成功还是失败? public stati
我希望可能有一个简单的解决方案,但我就是看不到它。 我正在尝试从 C# 控制台程序将数据插入 Azure 移动服务数据库。但是,当程序从 VS 内运行(通过 F5)时,在运行程序的常规过程中,不会插入
我正在尝试将 Azure 移动服务迁移到 Azure 应用服务。在 C# 中,我使用 MobileServiceClient.GetTable 获取 MobileServiceTable 对象。有了这
我可以创建一个 MobileServiceClient 和 GetTable()至InsertAsync ,并查看如何将我的模型插入到 Azure 中的 Easy Table 表中。但是当我 Read
我希望能够启动多个 InsertAsync 操作,然后等待完成。某种[形式]形式 Task[] tasks = new Task[10]; try { IMobileServiceTable
首先,我遇到了这个问题,在InsertAsync期间,RequestStatus的值无法从客户端传递到Mobile Service,该值将在null中处理(客户端 - 移动应用程序) (服务器 - A
我们的项目中有一张表,其主键为 HIERARCHYID 类型: CREATE TABLE [dbo].[OurTable] ( [Id] HIERARCHYID
我有兴趣的情况。我在 Azure 上有类和表格: public class InmeItem { public string Id { get; set; } [JsonPro
我是一名优秀的程序员,十分优秀!