Search In
Learn from 350 other Umbracians at the annual Umbraco Conference - CodeGarden '13. More than twenty high quality sessions, open spaces, hackathons and social events you'll remember. Not to be missed! Less than 25 tickets left - get yours now!
I'm just trying to replicate warren's RSS Razor script with a few modifications. Something strikes me as strange.
Should it be possible for a node to have more children than descendents. e.g. I just tried...
<p>@Model.AncestorOrSelf(1).Decendents.Count()</p> <p>@Model.AncestorOrSelf(1).Children.Count()</p>
I got the following:
0
13
But I thought that the set of all descendents of a node was a superset of the set of all children, so the number of decendents should always be equal to or greater than the number of children.
I really hope it's just not a spelling mistake Decendents() vs Descendants()
Cheers,
/Dirk
The level of embarssement I feel right now...