Almost all of our projects use a web application or winforms, as well as a data access level (class library) and stored procedures / database scripts.
We are looking for a good way to organize solutions and have found several ways:
1) We could have a solution for studio sql server management for all things related to db, and then have a visual studio solution for application-level projects and data access.
2) We could do all this in a visual studio with 3 projects, a sql server project, a web application / winforms project and a data access level project.
3) We could do all this in a visual studio with two projects, an application project for web applications / winforms and a data access level project and just put sql scripts in a directory in the data access level project.
I'm sure there are other ways, but I'm just curious to know how others do this.
source
share