Sitecore
Tree Menu Traversal in C# Queryable
Using C# to query entire tree system of pages looking for a particular attribute. Normally I would use a recursive technique, but then found this to be easier and more readable. Not sure how it is on performance, I think it’s supposed to be better. Found it here http://stackoverflow.com/questions/7062882/searching-a-tree-using-linq#answer-7063002 Here’s how I implmented
Here’s […]