public ITableQueryAsync <T> Where(Expression <Func <T, bool> > predExpr) { if (predExpr == null) { throw new ArgumentNullException("predExpr"); } return(new TableQueryAsync <T>( _innerQuery.Where(predExpr), _db, _taskScheduler ?? TaskScheduler.Default, _taskCreationOptions)); }
public IAsyncTableQuery <T> Where(Expression <Func <T, bool> > predExpr) { return(new AsyncTableQuery <T>(_innerQuery.Where(predExpr))); }