Hi all.
Is it possible to add an interface layer to ease switching between 2 different code
generations for different databases?
The challenge is this.
I have 1 Application which depending on a configuration setting runs with a backend DB of either SQL server 2005 or Sql Compact edition.
At runtime the application chooses the correct database layer based on the configuration.
Both the DB layer code for SQL Server 2005 and Sql compact edition is interfaced so business layers using the db service doesnt care about the underlying provider.
So can I implement something like this with LLBLGen ?
And what techniques in LLBLGen should be used to obtain this ?
Define DB interfaces
Generated DB layer A - implements DB interfaces
Generated DB layer B - implements DB interfaces
Thank you, best regards Tuxen