Welcome to the Community Exchange, a place where community members can exchange questions and answers related to DotNetNuke. If you would like more info about the Community Exchange, please visit this page in our Wiki.
I'm having an issue implementing the IHydrateable interface.
When I put the 'using DotNetNuke.Entities.Content' statement in, the reference is not found.
The override of the Fill method is found, but not the base.FillInternal call.
Is FillInternal the wrong call here? Or am I missing something?
public override void Fill(System.Data.IDataReader dr) { try { base.FillInternal(dr);
Any suggestions would be great!
The fillinternal method is a method on BaseEntityInfo so your class must derive from that, or a class that also derives from it - one of these classes is ContentItem which I'm guessing is what you're trying to do, so please ensure your class inherits correctly e.g.
public class MyCustomInfo : ContentItem
{
}
You have already flagged this post. Clicking "Remove Flag" below will remove your flag, thus reducing the count by one as well.