Azure Table Storage Rowkey Query not returning correct entities -
i have azure table storage lot of entities , when query entities rowkey(which of data type "double") less 8888 using query "rowkey le '8888' ".i entities rowkey greater 8888 also.
even if storing double
data type in rowkey, gets stored string
(both partitionkey
, rowkey
string data type). behavior seeing correct because in string comparison 21086
smaller 8888
.
what need make both of these strings of equal length pre-padding them 0
(so rowkey values 000021086
, 000008888
example) , when perform query, these values not returned.
Comments
Post a Comment