Hi everyone,
I created some users using this syntax:
CREATE USER [MY_USER] FOR EXTERNAL PROVIDER;
After a schema compare using Visual Studio 2019 Data Tools and generating a script to publish the changes I got this generated:
CREATE USER [MY_USER] WITHOUT LOGIN;
Which is not the expected behaviour.
Is this a limitation or am I missing some configuration?