'Iterate collection in expression

I need to iterate over collection in expression:

private readonly Expression<Func<TModel, IEnumerable<TMember>>> _collection;
private readonly IEnumerable<Expression<Func<TModel, TMember>>> _elements;

So, I need to create collection of expressions that present all elements. Is it possible?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source