linq - Can I have multiple partition keys in one query? -
i have range query, might cover several partitions. can specify multiple partitions in 1 query? should better run query per partition , join results?
example:
.createquery<segment>() .where(s => s.partitionkey == "a" || s.partitionkey == "b") can contains?
can specify multiple partitions in 1 query?
yes, can that.
should better run query per partition , join results?
generally speaking recommended approach depends lot on application. highly recommend reading on azure storage table design guide.
can contains?
no. contains not supported. list of supported operators, please see link: https://msdn.microsoft.com/en-us/library/azure/dd135725.aspx.
Comments
Post a Comment