Я пытаюсь сохранить мой IContent
с именем child
, но в этой строке (contentService.SaveAndPublish(child);
) я получаю следующую ошибку: Object reference not set to an instance of an object.
if (child.HasProperty("navn"))
{
child.SetValue("navn", worker.Name.ToString(), "da-dk");
}
contentService.SaveAndPublish(child);
Вот как я определяю contentService
:
IContentService contentService = Umbraco.Core.Composing.Current.Services.ContentService;
И я нахожу таких детей:
long totalChildren;
IEnumerable<IContent> children = contentService.GetPagedChildren(filialsParent.Id, 0, 100, out totalChildren);
Может кто-нибудь указать, что здесь не так?