你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IMobileServiceTable<T>.InsertAsync 方法

定义

重载

InsertAsync(T)

将新实例插入到表中。

InsertAsync(T, IDictionary<String,String>)

将新实例插入到表中。

InsertAsync(T)

将新实例插入到表中。

public System.Threading.Tasks.Task InsertAsync (T instance);
abstract member InsertAsync : 'T -> System.Threading.Tasks.Task
Public Function InsertAsync (instance As T) As Task

参数

instance
T

要插入的实例。

返回

在插入结束时将完成的任务。

适用于

InsertAsync(T, IDictionary<String,String>)

将新实例插入到表中。

public System.Threading.Tasks.Task InsertAsync (T instance, System.Collections.Generic.IDictionary<string,string> parameters);
abstract member InsertAsync : 'T * System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task
Public Function InsertAsync (instance As T, parameters As IDictionary(Of String, String)) As Task

参数

instance
T

要插入的实例。

parameters
IDictionary<String,String>

要在请求 URI 查询字符串中包括的用户定义的参数和值的字典。

返回

在插入结束时将完成的任务。

适用于