I have a list of properties and values that i'd like to use to dynamically build an Expression(Of Func(Of MyClass,MyClass))

I can run through the list and create each Expression by itself, but the only way I know how to combine them would be to use Expression.And or Expression.AndAlso, but that returns a BinaryExpression rather than my original Expression(Of Func(Of MyClass,MyClass)).

Any way to combine these into one?

link|improve this question
feedback

1 Answer

Try this answer: How do I compose existing Linq Expressions

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.