My filter string during a Table Query looks like below...
string FilterString = string.Format("PartitionKey eq '{0}'
and RowKey ge '{1}' and RowKey le '{2}'",
partitionKey, startsWith, startsWith);
https://msdn.microsoft.com/library/azure/dd894031.aspx says you can do prefix matching for names. Lets say there are 3 names...
- batman
- superman
- spiderman
I would like the query to return both superman and spiderman when I set the startsWith to 's'
The query above works when I say
RowKey ge 's' and Rowkey le 't'
However, I would like this to work when it says...
RowKey ge 's' and Rowkey le 's'
le is being treated as lt and IMHO it shouldn't have behaved the way it does. Am I doing something wrong?