// Entity Framework – Filtered List using (var db = new BlogContext()) { var posts = db.Posts.Where(p => p.Text.Contains("Some Value")).ToList(); }