TableEntity 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
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
Azure SDK for .NET