Beispiel #1
0
        /// <summary>
        /// get the  record by partition key and row key asyncronously."/>
        /// </summary>
        /// <param name="partitionKey">The partition key.</param>
        /// <param name="rowKey">The row key.</param>
        /// <returns>Task&lt;T&gt;.</returns>
        public async Task <T> GetRecordAsync(string partitionKey, string rowKey)
        {
            var entity = await _tableStore.GetRecordAsync(partitionKey, rowKey).ConfigureAwait(false);

            return(CreateRecord(entity));
        }