TableOperation.Insert Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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 à
Azure SDK for .NET