mdisbrow wrote:
Sorry... I was looking for higher-level help... Do I need to create two LLBLGen projects (one for each database)? How do I reference entities in each database? Should I use the Adapter templates??
You don't need adapter for that. Adapter is only needed if you want to read an entity from db A and write it without hassle in db B. As the db's are different, you can't do that.
You should create 2 projects, one for each database, give the connectionstring key in the project properties a different name and give them different root namespaces when you generate the code. You can then use both projects in the same application