Add function UnRegisterEntity into Spring.Persistence.Core.DatabaseManager

Issue #210 resolved
Christophe Ravaut created an issue

After creating the TDatabasemanager, all the entities are registrated. UnRegisterEntity can then remove an entity.

procedure TDatabaseManager.UnRegisterEntity(entityClass: TClass);
begin
  fEntities.Remove(entityClass);
end;

Comments (3)

  1. Log in to comment