Changes between Version 5 and Version 6 of S3/S3ResourceFilter
- Timestamp:
- 01/31/12 12:22:45 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/S3ResourceFilter
v5 v6 32 32 - S3ResourceQuery instances represent virtual field filters ("vfltr") 33 33 34 It is possible to define S3ResourceQueries even for real fields. When extracting rows from the database table, those parts of a S3ResourceQuery which (only) concern real fields get automatically converted into Query instances and added to the DAL query. Furthermore, where S3ResourceQueries need joins, those get automatically added to the real query as well. 35 34 36 The process for the extraction of rows from the database is as follows: 35 37 36 38 [[Image(rfilter_process.png)]] 37 [[Image(rfilter_process.png)]] 39 40 This process supports pagination (slicing), although that would necessarily not only retrieve the requested page from the database, but all records which match the DAL query. Therefore, the virtual filters should always only be the "last mile", while the DAL query reduces the number of candidates to the necessary minimum. 41 42 == URL queries == 43 44 == Extending filters at the back-end ==