public Task <DocumentEntity> GetAsync(string documentId) { return(_context.FirstOrDefaultAsync(p => p.Id == documentId)); }
private Task <CachedItem> RetrieveAsync(string key) { return(_tableSet.FirstOrDefaultAsync(e => e.PartitionKey == _options.PartitionKey && e.RowKey == key)); }