I have a SQL table with a column which is using always encrypted. I am trying to setup CI / CD pipeline for a Visual Studio database project. I am unable to build the project because VS2017 is unable to recognize this particular column
[ColumnName] [varchar](max) COLLATE Latin1_General_BIN2 ENCRYPTED WITH (COLUMN_ENCRYPTION_KEY = [CEKKeyname], ENCRYPTION_TYPE = Deterministic, ALGORITHM = 'AEAD_AES_256_CBC_HMAC_SHA_256') NOT NULL
Below is the build error
Severity Code Description Project File Line Suppression State
Error SQL71501: Column: [dbo].[mytable].[ColumnName] has an unresolved reference to Column Encryption Key [CEKKeyname].
I have tried the solutions mentioned here unresolved reference to object [INFORMATION_SCHEMA].[TABLES] and other similar solutions as well without any results.
I am using VS2017 enterprise, SSDT 15.1.61808 , Azure SQL Database
any pointers on how to fix this?