When comparing schemas from a SQL 2008 database to a Visual Studio 2010 database project, if the schema name has a space in it, the script generator generates the following:
create view "Alphabetical list of products" AS...
When the database project is built, it throws errors due to incorrect syntax (the double quotes). Is there an option to have the script generator to generate the following so the database project will build?
create view [dbo].[Alphabetical list of products] AS...