I am just getting started with LINQ. I am creating an Entity Framework app that uses the canonical Post and
Tag model. A Post contains an ID, Text, and Tags, and a
Tag contains an ID, a Name, and Posts.
A previous thread on StackOverflow showed me how to query for a Post that matches all
Tag objects (A and B
…