Hello, I would like to create a (simple)Â linq query where i can check if a value contains certain words. These words are given in a string (_description) Dim keywords = _description.Split( " " ) Dim ap = From a In Agendapunts _ Where a.description.Contains(keywords) Select a = Group This doesn't work because the .Contains function does not accept a string array.. How do you do this with linq ? Thank you.
Read More...