Given a collection of the following class:
public class Post { ... public IList Tags { get; set; } }
Is there an easy
I believe this will work for what you're trying to do.
posts.Where(p => p.Tags.Any(t => t.StartsWith("foo")))