I am aware similar questions have been asked in the past but they were based on older versions of llblgen.
What is the best course of action if I am developing a web application with llblgen (version 2.6) initally working off a Sybase ASE database and then in a few months working off SQL Server 2005 database?
The database schema are identical in both Sybase and SQL Server.
A Possible solution is:
Create a llblgen project and generate the DAL using the Sybase database and use it with the web application. Then when ready to use SQL Server database, create a new llblgen project and generate the DAL using SQL Server database. After generating the DAL simply replace the DAL dll in the web application project?
Is above correct? Is there better solutions to this class of problems?
Is there a difference using self servicing as opposed to adapter.
I am using LLBLGen Pro 2.6 Final self servicing two class and C#.