I'm building an application that must support MSSQL and MySQL databases. To avoid duplication of stored procedures etc., I'm considering using the Data Access Application Block to retrieve broadly scoped, very general datasets from either database, and then use DB agnostic LINQ code for more specific data access.
My other option is to use the Entity Framework, as the latest SQL/Connect library apparently supports it, but I've seen a lot of bad press about EF recently, so I have some doubts.
Which would be a better route to follow?