I've been looking but can't find a solution to this...
Here are my Entities...
- ContentPage (has many ContentPageZones)
- ContentPageZone (Has One Content)
- Content
I want to query for a ContentPage by ID , and, I want it to contain all related ContentPageZones that are active and that have at least one Content that is active (both have IsActive bool property). If there are no ContentPageZones available that have active Content, I still want the ContentPage with an empty list of ContentPageZones.
Suggestions?