Hi!
Is it possible somehow to fetch an entity, mark it as new and then save?
Example:
MyEntity entity = new MyEntity(ID);
Adapter.FetchEntity(entity);
entity.IsNew = true;
entity.ID = 0;
Adapter.SaveEntity(entity);
So this would make a copy of my entity in the database.