Support for more database independent code generation ...
I mean, this is really a real pain if your application wants to talk to different databases (for example, SQL Server and Oracle), and you want to have only one set of generated DAL objects. I would really like it if you had the opportunity to indicate that any SQL code that is sent to the database will be as compatible with most engines as possible right now, if you generated objects aimed at SQL Server, then all queries will have form
SELECT [schema]. [table_name] FROM ....
Unfortunately, this does not work in Oracle, so basically you are out of luck there.
Perhaps this is a big problem for most of you, but I'm currently writing a commercial application that advertises one of its main functions as the ability to run databases on different machines, just changing its configuration, and I chose SubSonic because I thought that he can handle this task quite easily, but to be honest, the second time I think that because of all the hoops, I may have to slip through to get this to work correctly under different conditions.
source share