TableEntityAdapter<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Azure SDK for .NET