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

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -