Create a HierarchicalTaxon Parent Ref
### EDIT ###
Got it, for anyone else, make sure to set the Taxonomy property of your new category to be the category.
(this one)
this
.PageTaxonomyManager.GetTaxonomy<HierarchicalTaxonomy>(TaxonomyManager.CategoriesTaxonomyId);
foreach
(var c
in
children)
//c.ItemParent = parentCategory;
//c.Parent = parentCategory;
parentCategory.Subtaxa.Add(c);
//this
.Category.Taxa.Add(c);
this
.PageTaxonomyManager.SaveChanges();
|