Share via


TableEntityAdapter<T> Constructors

Definition

Overloads

TableEntityAdapter<T>()

Initializes a new instance of the TableEntityAdapter<T> class.

TableEntityAdapter<T>(T)

Initializes a new instance of the TableEntityAdapter<T> class with the specified object.

TableEntityAdapter<T>(T, String, String)

Initializes a new instance of the TableEntityAdapter<T> class with the specified object, partition key and row key.

TableEntityAdapter<T>()

Initializes a new instance of the TableEntityAdapter<T> class.

public TableEntityAdapter ();
Public Sub New ()

Applies to

TableEntityAdapter<T>(T)

Initializes a new instance of the TableEntityAdapter<T> class with the specified object.

public TableEntityAdapter (T originalEntity);
new Microsoft.Azure.Cosmos.Table.TableEntityAdapter<'T> : 'T -> Microsoft.Azure.Cosmos.Table.TableEntityAdapter<'T>
Public Sub New (originalEntity As T)

Parameters

originalEntity
T

The object to write to Azure Table Storage.

Applies to

TableEntityAdapter<T>(T, String, String)

Initializes a new instance of the TableEntityAdapter<T> class with the specified object, partition key and row key.

public TableEntityAdapter (T originalEntity, string partitionKey, string rowKey);
new Microsoft.Azure.Cosmos.Table.TableEntityAdapter<'T> : 'T * string * string -> Microsoft.Azure.Cosmos.Table.TableEntityAdapter<'T>
Public Sub New (originalEntity As T, partitionKey As String, rowKey As String)

Parameters

originalEntity
T

The object to write to Azure Table Storage.

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