hi
In our code, using version 5.2, we have implemented a method as follows:
// __LLBLGENPRO_USER_CODE_REGION_START CustomDataAccessAdapterCode
public IFieldPersistenceInfo GetFieldPersistenceDetails(IEntityField2 field)
{
return base.GetFieldPersistenceInfo(field);
}
// __LLBLGENPRO_USER_CODE_REGION_END
But it turns out that in the base class generated by version 5.9, in our migration, the base class method "GetFieldPersistenceInfo" is no longer available.
How is it possible to fix this?
Thank you very much