Hi, Would like to bring up couple of features for brainstorming -
1. As of now, formula or computations are unsupported in the MetaModel SQL xyntax. eg. SELECT col1, col2, col1/col2 FROM foo; This works only on JdbcDataContext but not with others. Is there any plan to allow this kind of SQL in future? 2. Currently, MetaModel performs joins etc. on composite data context in memory within the application space. If my data set is large and I want to pass this off to an external SQL database, then I am considering the following approach - In CompositeDataContext class - Introduce a new public method executeQueryExternally(Query) If this method is called, then the results returned by delegate executor contexts are passed off to the external DB for joining. This method would be similar to executeQuery() in the same class, which seems to determine the delegate data contexts and executes parts of the query on them. Please validate my thought process. Regards, Ashish
