Beispiel #1
0
        /// <summary>
        /// Gets the record by partition key and row key.
        /// </summary>
        /// <param name="partitionKey">The partition key.</param>
        /// <param name="rowKey">The row key.</param>
        /// <returns>T.</returns>
        public T GetRecord(string partitionKey, string rowKey)
        {
            var entity = _tableStore.GetRecord(partitionKey, rowKey);

            return(CreateRecord(entity));
        }