I want to fetch records from azure table storage on the basis of multiple Partition key values.
I was referring below link for query data with multiple criteria:
Querying Windows Azure Table Storage with multiple query criteria

In above image as you can see that there are four records in the table now I want to fetch record based on two partition key values. for example I want to fetch record based on section1 and section2 partition key value.
So my question is can I write a single statement like
TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.Equal, "**section1, section2**"); like we write in SQL query.
or we need to write GenerateFilterCondition multiples time for each search criteria.