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
|
What about support of IEnumerable<TId> for Entity.Attribute("Id").In ? |
|
|
If you are on .NET 3.5, you can do this as Entity.Attribute("Id").In(seq.Cast<object>().ToArray()). If all those noisy operators offend you (as well they might!) then you can always wrap this in an extension method on PathExpression. |
|
|
Nice :) I'm not the biggest expert on every thing you could do with Linq yet. This (and other) should be added to oriented help suggested by Neal about at http://www.mindscape.co.nz/blog/index.php/2009/02/09/planning-lightspeed-30-what-do-you-want/#comments |
|