Hi Guys,
Just upgraded from LLBLGen 4 to 5.8 for a Project.
We were using Adapter and had a class like:
public partial class CommonEntityBase
{
public IEnumerable<CommonEntityBase> GetDirtyParents()
{
return GetDependentRelatedEntities().Where(x => x.IsDirty).Cast<CommonEntityBase>();
}
public IEnumerable<CommonEntityBase> GetDirtyChildren()
{
return GetMemberEntityCollections().SelectMany(x => x.DirtyEntities).Cast<CommonEntityBase>();
}
}
These methods don't seem to exist in 5.8 - what would be the correct way of adding these methods to the CommonEntityBase like above?
Thanks for your help!