Dynamic "OR" for a full-text search

Hello!

Say I have 3 string fields and I want to search for the same string inside those fields.
I need a way to make a dynamic OR because the fields may be more than 3, or less and the OR search must work consistently, thus I can't do the Where(Linq.Contains('Prop1',Value) or... or...) but it needs to be dynamic, so the ORs have to be appended one after another.
Any ideas?

Thanks!

Maybe this topic can help you:

Oh, that might work. I will give it a try.
Does this work with normal expressions as well?

Thanks!

What do you mean by normal expressions? You can set any Linq expression to a variable of type TLinqExpression.