November Happy Hour will be moved to Thursday December 5th.
I'm sure this has done before, but I wrote this for our latest project and I like it so much that have to share it :)
https://gist.github.com/3755623
Now you can do a findpageswithcriteria as easy as.
.FindPages.Query(PageReference.RootPage, CurrentPage.LanguageID).And().ByPageType(11).And().ByAllCategories(CurrentPage.Categories).OrderByDate(true).Execute();
Done.
I'm sure this has done before, but I wrote this for our latest project and I like it so much that have to share it :)
https://gist.github.com/3755623
Now you can do a findpageswithcriteria as easy as.
.FindPages
.Query(PageReference.RootPage, CurrentPage.LanguageID)
.And()
.ByPageType(11)
.And()
.ByAllCategories(CurrentPage.Categories)
.OrderByDate(true)
.Execute();
Done.