TableEntity Constructors

Definition

Overloads

TableEntity()

Initializes a new instance of the TableEntity class.

TableEntity(String, String)

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

TableEntity()

Initializes a new instance of the TableEntity class.

public TableEntity ();
Public Sub New ()

Applies to

TableEntity(String, String)

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

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

Parameters

partitionKey
String

A string containing the partition key of the TableEntity to be initialized.

rowKey
String

A string containing the row key of the TableEntity to be initialized.

Applies to