dtretyakov / WindowsAzure

.NET library aimed at managing and querying entities from Windows Azure Storage. It can be used as LINQ to Azure Tables.
MIT License
64 stars 27 forks source link

Unable to receive result in some composite queries #25

Closed dtretyakov closed 11 years ago

dtretyakov commented 11 years ago

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)