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!