Is this a bug (or can there be feature to validation) to avoid generated code that would run into errors like "
The size (8000) given to the parameter 'EightK' exceeds the maximum allowed (4000)."
Steps:
1. Create SQL DB project, create a table with nvarchar(4000) field, publish to target DB
2. Modify the column definition change from nvarchar(4000) to nvarchar(8000), generate publish script
While as a user I expect validatio
n to fire and catch this, the actual is alter table script is generated, that runs into error when executed