Once again I am being challenged by this Razor malarky! All I want to do is get the first child node under the root that is of a specific document type so that I can list out links to their child pages but no matter what I try the "Enumeration yielded no results"!
I've tried the following with no success:
@Model.Ancestor().Children.Where("NodeTypeAlias == \"doctypeAlias\"")
@Model.Ancestor().doctypeAlias
@Model.Ancestor().Descendants("doctypeAlias")
Am I doing something very obviously wrong?