I've a Dynamodb table with two global secondary indexes. and I need to query this table based only on both of those indexes at once without using the hash key of the table. Is there any particular way to do this in AWS sdk for .net? It seems this is impossible in high level API.
eg:-(SQL equivalent query would be:-) SELECT * FROM TABLE WHERE FIRST_GLOBAL_SECONDARY_INDEX='x' AND SECOND_GLOBAL_SECONDARY_INDEX='y';
FIRST_GLOBAL_SECONDARY_INDEX='x'
? Does that mean thehash
of the GSI?hash+range
? – mkobit