Benefits of keeping all SQL Server database objects inside Visual Studio Solution
Benefits:- # Easy stored procedure debugging. # Each database object (table,view,function,type,stored procedure) treat as an individual file. # On Single click get change history of any database object. # This approach is considered best practice for database development and distribution using CI/CD as it generates *.dll,*.dacpac,*.sql). # Direct deployment of updated objects on any SQL SERVER target platform including Azure. # Single IDE(Integrated development environment) database application development using .NET and SQL Server. # Version control of each database object(table,view,function,type,stored procedure).