mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
18 lines
1.3 KiB
Markdown
18 lines
1.3 KiB
Markdown
## Run this sample
|
|
Note: Run this project on a machine joined to a domain that is federated with Microsoft Entra. A contained database user representing your Microsoft Entra ID principal, or one of the groups, you belong to, must exist in the database and must have the CONNECT permission.
|
|
|
|
1. Before building and running the Integrated project:
|
|
|
|
+ In Program.cs, locate the following lines of code and replace the server/database name with your server/database name.
|
|
```
|
|
builder["Data Source"] = "<server name>.database.windows.net "; // replace '<server name>' with your server name
|
|
builder["Initial Catalog"] = "demo"; // replace with your database name
|
|
```
|
|
|
|
2. The `builder["Authentication"]` method must be set to `SqlAuthenticationMethod.ActiveDirectoryIntegrated`;
|
|
|
|

|
|
|
|
3. Running this project on a machine joined to a domain that is federated with Microsoft Entra will automatically use your Windows credentials and no password is required. The execution window will indicate a successful connection to the database followed by “Please press any key to stop”:
|
|

|