I have an Azure Storage table where I store the results of encounters with flashcards. It has columns like:
UserID
CardID
ConsecutiveCorrect
TotalCorrect
TotalIncorrect
Sadly, I did not think to add a column for TotalEncounters
. I'm trying to think of a way to query for cards that have been seen N times. This would be easy if I could just say WHERE TotalCorrect + TotalIncorrect = N
, but I don't see anywhere in the API where it's possible to do this.
Am I just missing something awesome? Or is this actually impossible in Azure Table Storage?