I have a custom IContentType and want to be able to use embeddables within it. What do I need to do to enable my custom content type to use embeddables?
I have a custom IContentType and want to be able to use embeddables within it. What do I need to do to enable my custom content type to use embeddables?
I changed the code to as follows, and still get the error. When I remove the code from my DLL, it works fine.
if (_embeddedController != null)
{
_embeddedController.Updated(e.Lesson.ContentId, null, (updater) =>
{
var testString = updater.Update("");
});
}
Are there any other exceptions logged when this issue occurs that could provide more detail/context?