} // needed for TableEntity public PollResult(FeedId feedId) { PartitionKey = feedId; RowKey = C.CurrTimestamp(); }
public IList <PollResult> Read(FeedId feed) { var query = resultsTable.CreateQuery <PollResult>().Where(f => f.PartitionKey == feed.ToString()); return(query.ToList()); }