Linq to select where Name contains substring?
I want to return all rows where the Name field contains a substring
5 Replies
ok lets think about this logically, why would you be using
Any
instead of Where
which you explicitly say in the description of what you want^
i'm helpless with Linq
Any as the name implies just returns a bool, true if any of the items meet the condition
ah
ok thank you
wow it worked!