Udostępnij za pośrednictwem


DynamicTableEntity Constructors

Definition

Overloads

DynamicTableEntity()

Initializes a new instance of the DynamicTableEntity class.

DynamicTableEntity(String, String)

Initializes a new instance of the DynamicTableEntity class with the specified partition key and row key.

DynamicTableEntity(String, String, String, IDictionary<String,EntityProperty>)

Initializes a new instance of the DynamicTableEntity class with the entity's partition key, row key, ETag (if available/required), and properties.

DynamicTableEntity()

Initializes a new instance of the DynamicTableEntity class.

public DynamicTableEntity ();
Public Sub New ()

Applies to

DynamicTableEntity(String, String)

Initializes a new instance of the DynamicTableEntity class with the specified partition key and row key.

public DynamicTableEntity (string partitionKey, string rowKey);
new Microsoft.Azure.Cosmos.Table.DynamicTableEntity : string * string -> Microsoft.Azure.Cosmos.Table.DynamicTableEntity
Public Sub New (partitionKey As String, rowKey As String)

Parameters

partitionKey
String

A string containing the partition key value for the entity.

rowKey
String

A string containing the row key value for the entity.

Applies to

DynamicTableEntity(String, String, String, IDictionary<String,EntityProperty>)

Initializes a new instance of the DynamicTableEntity class with the entity's partition key, row key, ETag (if available/required), and properties.

public DynamicTableEntity (string partitionKey, string rowKey, string etag, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Cosmos.Table.EntityProperty> properties);
new Microsoft.Azure.Cosmos.Table.DynamicTableEntity : string * string * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Cosmos.Table.EntityProperty> -> Microsoft.Azure.Cosmos.Table.DynamicTableEntity
Public Sub New (partitionKey As String, rowKey As String, etag As String, properties As IDictionary(Of String, EntityProperty))

Parameters

partitionKey
String

A string containing the partition key value for the entity.

rowKey
String

A string containing the row key value for the entity.

etag
String

A string containing the ETag for the entity.

properties
IDictionary<String,EntityProperty>

An IDictionary<TKey,TValue> object containing the entity's properties, indexed by property name.

Applies to