table_entity::table_entity Constructor
Initializes a new instance of the azure::storage::table_entity class.
table_entity();
table_entity(
utility::string_t partition_key,
utility::string_t row_key
);
table_entity(
utility::string_t partition_key,
utility::string_t row_key,
utility::string_t etag,
properties_type properties
);
table_entity(
table_entity&& other
);
Parameters
- partition_key
The entity's partition key.
- row_key
The entity's row key.
- etag
The entity's current ETag.
- properties
The entity's properties, indexed by property name.
- other
A reference to a set of table_entity on which to base the new instance.
Requirements
Header: table.h
Namespace: azure::storage