Partager via


TableOperation.Insert Méthode

Définition

Surcharges

Insert(ITableEntity)

Crée une opération de table qui insère l'entité donnée dans une table.

Insert(ITableEntity, Boolean)

Crée une opération de table qui insère l'entité donnée dans une table.

Insert(ITableEntity)

Crée une opération de table qui insère l'entité donnée dans une table.

public static Microsoft.Azure.Cosmos.Table.TableOperation Insert (Microsoft.Azure.Cosmos.Table.ITableEntity entity);
static member Insert : Microsoft.Azure.Cosmos.Table.ITableEntity -> Microsoft.Azure.Cosmos.Table.TableOperation
Public Shared Function Insert (entity As ITableEntity) As TableOperation

Paramètres

entity
ITableEntity

Objet ITableEntity à insérer dans la table.

Retours

Objet TableOperation.

S’applique à

Insert(ITableEntity, Boolean)

Crée une opération de table qui insère l'entité donnée dans une table.

public static Microsoft.Azure.Cosmos.Table.TableOperation Insert (Microsoft.Azure.Cosmos.Table.ITableEntity entity, bool echoContent);
static member Insert : Microsoft.Azure.Cosmos.Table.ITableEntity * bool -> Microsoft.Azure.Cosmos.Table.TableOperation
Public Shared Function Insert (entity As ITableEntity, echoContent As Boolean) As TableOperation

Paramètres

entity
ITableEntity

Objet ITableEntity à insérer dans la table.

echoContent
Boolean

true si la charge utile du message doit être retournée dans la réponse à l’opération d’insertion. Sinon, false.

Retours

Objet TableOperation.

S’applique à