The classes that I use as a base have to map the individual elements. In this case, I have Faqs, Categories, and the bridges.
Faq.cs
public class Faq {
public Faq() {
//... other stuff
this.WithFaqCategoryBridges = new List<FaqCategory>();
}