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!