Beispiel #1
0
        public static IQueryable <Content> Children(this Content content, IHiveManager hiveManager)
        {
            var childIds = content.AllChildIds();

            return(hiveManager.QueryContent().OfRevisionType(FixedStatusTypes.Published).InIds(childIds));
        }