6

I am following https://learn.microsoft.com/en-us/ef/core/get-started/aspnetcore/new-db to learn how to use the new .Net Core and Entity Framework Core and I am trying to create the connection string to a remote SQL Server. I updated the server and database strings but it does not show how to specify the username and password. I have done some digging but every entity framework core example I find is for localDB only. How am I to properly specify the login credentials and what should Trusted_Connection be set to for a remote SQL Server 2016 server?

5
  • You can replace user id and password for connection string in DbContext with dependency injection, have you tried that ? Commented Dec 26, 2016 at 1:55
  • @H.Herzl Huh? I am asking how to specify it in the base connection string. Commented Dec 26, 2016 at 1:56
  • 1
    Google is your friend... connectionstrings.com/sql-server Commented Dec 26, 2016 at 2:48
  • It's the same connection string, e.g.: server=(local);database=Foo;user id=name;password=123; Commented Dec 26, 2016 at 3:05
  • @Tseng I was googleing just never found that page. Thanks for the link. If you want to use the first "standard security" and link to the page as an answer I will mark it as so. Commented Dec 26, 2016 at 3:11

2 Answers 2

7

The connection strings in EF Core remain the same as in EF6 and when you use pure ADO.NET.

For user/password authentication it's Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;.

For a list of common connection strings for SQL Server (and others), look at https://www.connectionstrings.com/sql-server/.

Sign up to request clarification or add additional context in comments.

Comments

1

There is small difference in the connection string for the core.You can find it in the MSDN Blog.

we need to specify the server port number in the connection string.

 Server = tcp:<ServerName>,<PortName>; Database = <DataBaseName>; User Id = <UserName>; Password = <Password>;

To get the server port number using the following query.

 select distinct local_net_address, local_tcp_port from sys.dm_exec_connections where local_net_address is not null

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.