Changes between Version 39 and Version 40 of FDORfc50
- Timestamp:
- 07/13/10 05:50:55 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc50
v39 v40 193 193 FDO_API FdoJoinCriteria* GetItem(FdoString* name); 194 194 195 /// Returns NULL in case FdoJoinCriteria was not found or FdoJoinCriteria found (based on name search). 195 /// Returns NULL in case FdoJoinCriteria was not found or FdoJoinCriteria found (based on name search). 196 196 FDO_API FdoJoinCriteria* FindItem(FdoString* name); 197 197 … … 200 200 }; 201 201 }}} 202 203 Note: Join criteria have a name which can be an alias (in case caller provided one) or the name of the class in case user did not provided an alias. 204 Search in this collection by name will use only join criteria name in the search and will not check alias and name also, so in case caller uses an alias, he should use in filters only that alias in front of properties. 202 205 203 206 Join criteria will be used to generate join SQL commands, like: … … 275 278 {{{ 276 279 /// \brief 277 /// The FdoSubSelectExpression class derives from Fdo Expression and can be used with IN condition280 /// The FdoSubSelectExpression class derives from FdoValueExpression and can be used with IN condition 278 281 /// to test if a property is in a range of values returned by this sub-select 279 class FdoSubSelectExpression : public Fdo Expression282 class FdoSubSelectExpression : public FdoValueExpression 280 283 { 281 284 protected: