I created a user in my Azure SQL database like this :
CREATE USER [MyUser]
WITH PASSWORD = 'my password';
During schema comparison between my Database and Database Project, VS generate strange script :
CREATE USER [MyUser]
WITH PASSWORD = N'b$&#$!~<+clbztmsFT7_q7yyW2Etqd6Xdgrs|zeqhd|po$?+';
So, the password is different!
One more! During update my database through CI (dacpac applying) , I see, that user was created but both passwords are not working!
Does anyone know whats the problem? Thanks!