SyntaxFix
Write A Post
Hire A Developer
Questions
var filtered = projects; foreach (var tag in filteredTags) { filtered = filtered.Where(p => p.Tags.Contains(tag)) }
The nice thing with this approach is that you can refine search results incrementally.