I am running LLBLGenPro 2.5 Final, using Visual Studio 2005 (C#). I want to figure out a cleaner way to copy entities from one database (SQL 2005 Express) to another (SQL 2005). Currently, I set the ActualConnectionString to the SQL Express database, then I fetch the entire entity graph. Then I make a copy, (I am not using the memorystream method, rather creating a new entity and copying each field one at a time). Then, I set the ActualConnectionString to the SQL 2005 database and save the entity recursively.
Is there a better way?