In Razor, how do you select nodes where the NodeTypeAlias ends with Page?
This is a working example
var items = node.Children.Where("Visible").Where("NodeTypeAlias == \"TextPage\"");
but how do you do something like this
var items = node.Children.Where("Visible").Where(NodeTypeAlias.EndsWith("Page"));
I got the answer. Hope it helps someone.