dtretyakov/WindowsAzure

Unable to receive result in some composite queries

Closed this issue · 0 comments

In the following code sample:
var query1 = table.Where(p => p.StringProperty == "1" && p.PK == "1" && p.RK.CompareTo("0") > -1);

// not equals to

var query2 = table.Where(p => p.StringProperty == "1");
query2 = query.Where(p => p.PK == "1");
query2 = query.Where(p => p.RK.CompareTo("0") > -1)