I am using Azure table storage which provides very less options to query the table storage. I have my RowKey as a composed key in the following way:
"b844be0d-2280-49f7-9ad7-58c36da80d22_2518908336099522182"
,"b844be0d-2280-49f7-9ad7-58c36da80d22_2518908336099522183"
,"b844be0d-2280-49f7-9ad7-58c36da80d22_2518908336099522184"
,"b844be0d-2280-49f7-9ad7-58c36da80d22_2518908336099522185"
The first part is a Guid, and the second part after the separator(_) is the timeticks.
I want to search on azure storage using its operators for rowkeys ending with "2518908336099522182"
There is no "Contains" operator that can help here, What do i do to get it working for "EndsWith" kind of filtering?