How to get content from a taxon item
Ok so I have a reference to my HierarchicalTaxon item...how do I then get every document linked to that taxon?
Steve
Oh wait, I think I'm looking at it backwards...
Go though documents and get items with the taxID, not get the taxID and get referenced docs...
App.WorkWith().Documents().Publihed().Where(ci => ci.GetValue<IList<Guid>>("Category").Contains(taxon.Id) &&
ci.Status == Telerik.Sitefinity.GenericContent.Model.ContentLifecycleStatus.Live)
.Get();