Hello,
Has anybody ever done an implementation of cascading delete on data
mapper?
I could see that IBatis Mapper does not support it like nHibernate.
I'm thinking to have a base class for objects in my domain model, to give to
them some attributes to control the object states in memory (new, deleted,
changed), like:
public abstract class BaseEntity {
bool Changed
public New
public Deleted
}
public abstract BaseDao {
public void CreateOrUpdate()
}
What about ?
Thanks,
Anderson

