TableEntity Constructors

Definition

Overloads

TableEntity()

Creates an instance of the TableEntity class without any properties initialized.

TableEntity(IDictionary<String,Object>)

Initializes a new instance of the TableEntity class with properties specified in values.

TableEntity(String, String)

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

TableEntity()

Source:
TableEntity.cs

Creates an instance of the TableEntity class without any properties initialized.

public TableEntity ();
Public Sub New ()

Applies to

TableEntity(IDictionary<String,Object>)

Source:
TableEntity.cs

Initializes a new instance of the TableEntity class with properties specified in values.

public TableEntity (System.Collections.Generic.IDictionary<string,object> values);
new Azure.Data.Tables.TableEntity : System.Collections.Generic.IDictionary<string, obj> -> Azure.Data.Tables.TableEntity
Public Sub New (values As IDictionary(Of String, Object))

Parameters

values
IDictionary<String,Object>

A IDictionary containing the initial values of the entity.

Applies to

TableEntity(String, String)

Source:
TableEntity.cs

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

public TableEntity (string partitionKey, string rowKey);
new Azure.Data.Tables.TableEntity : string * string -> Azure.Data.Tables.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