My windows applicationĀ has to work with 3 databases(Sybase,Sql Server and Oracle). But I do not need to connect to all 3 at the same time. The application has to use only one database at a time , depending on what database is chosen. I would like to write database agonistic code so that it can be used for all the three databases . LINQ seems to be a good solution as I can formulate queries against the model instead of writing raw SQL queries.Will LINQ to SQL work in a scenario like this? If it does
Read More...