This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
I found a link query that doesnt work How else could I write this?
var mt = from t in mtypes |
|
|
After wrapping my head around what I really needed I re-wrote the query above to be var mt = from t in aliases alot simpler. But are composite queries still possble if I need them in the future? |
|
|
We currently only support composite queries where the subquery doesn't depend on the outer query. For example, the following query works: var query = from m in UnitOfWork.Members But if you change UnitOfWork.Comments in the subquery to m.Comments (which is the difference in your original query), then it doesn't work. I'll put this on the backlog but I'm not sure whether it will be an easy or difficult fix so we'll need to monitor how many customers are running into this issue in order to prioritise it. |
|