<t>First "and" your partition filter with one of the date filters, then "and" the intermediate result with the other date filter.<br/>
<br/>
string date1 = TableQuery.GenerateFilterConditionForDate(<br/>
"Date", QueryComparisons.GreaterThanOrEqual,<br/>
DateTimeOffsetVal);<br/>
string date2 = TableQuery.GenerateFilterConditionForDate(<br/>
"Date", QueryComparisons.LessThanOrEqual,<br/>
DateTimeOffsetVal);<br/>
string finalFilter = TableQuery.CombineFilters(<br/>
TableQuery.CombineFilters(<br/>
partitionFilter,<br/>
TableOperators.And,<br/>
date1),<br/>
TableOperators.And, date2);<br/>
<br/>
```</t>