I am trying to host a SQL server database, but whenever I try to connect to it I get this error:
The login is from an untrusted domain and cannot be u
In .net Core also you may get this error if Trusted_Connection=True; Is set. Sample setting in appsettings.jason
ConnectionStrings": { "DefaultConnection": "Server=serverName; Database=DbName; uid=userId; pwd=password; MultipleActiveResultSets=true"
},