Given a collection of the following class:
public class Post { ... public IList Tags { get; set; } }
Is there an easy
Try x => x.Tags.Any(tag => tag.StartsWith("foo"))
x => x.Tags.Any(tag => tag.StartsWith("foo"))