-
Notifications
You must be signed in to change notification settings - Fork 30
Fix link for referencing existing SQL Server resources #198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Updated the link for referencing existing resources in SQL Server documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR fixes a broken documentation link in the SQL Server integration documentation. The old link pointed to a non-existent app-host-overview.md file, which has been replaced with a link to the external parameters documentation that covers connection strings.
Key changes:
- Updated broken link from
app-host-overview.md#reference-existing-resourcestoexternal-parameters/#connection-string-values
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| <Aside type="tip"> | ||
| If you'd rather connect to an existing SQL Server, call `AddConnectionString` instead. For more information, see [Reference existing resources](../../fundamentals/app-host-overview.md#reference-existing-resources). | ||
| If you'd rather connect to an existing SQL Server, call `AddConnectionString` instead. For more information, see [Reference existing resources](../../fundamentals/external-parameters/#connection-string-values). |
Copilot
AI
Dec 23, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new link points to the "Connection string values" section which is appropriate for the AddConnectionString method. However, other similar documentation pages (mysql.mdx, oracle.mdx, mongodb.mdx) use a different link: /get-started/resources/ for the same purpose. For consistency across the documentation, consider using the same link pattern. The /get-started/resources/ page provides a higher-level overview of working with resources, while external-parameters focuses specifically on connection strings—both are relevant, but consistency would help users navigate the docs more predictably.
| If you'd rather connect to an existing SQL Server, call `AddConnectionString` instead. For more information, see [Reference existing resources](../../fundamentals/external-parameters/#connection-string-values). | |
| If you'd rather connect to an existing SQL Server, call `AddConnectionString` instead. For more information, see [Reference existing resources](/get-started/resources/). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't believe the /get-started/resources/ is an appropriate link. It does not provide additional guidance for how to best utilize AddConnectionString.
|
|
||
| <Aside type="tip"> | ||
| If you'd rather connect to an existing SQL Server, call `AddConnectionString` instead. For more information, see [Reference existing resources](../../fundamentals/app-host-overview.md#reference-existing-resources). | ||
| If you'd rather connect to an existing SQL Server, call `AddConnectionString` instead. For more information, see [Reference existing resources](../../fundamentals/external-parameters/#connection-string-values). |
Copilot
AI
Dec 23, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's another instance of the same broken link in efcore/sql-server.mdx at line 74 that also references the non-existent app-host-overview.md file. This file should be updated with the same fix for consistency.
| If you'd rather connect to an existing SQL Server, call `AddConnectionString` instead. For more information, see [Reference existing resources](../../fundamentals/external-parameters/#connection-string-values). | |
| If you'd rather connect to an existing SQL Server, call `AddConnectionString` instead. For more information, see [Reference existing resources](../../fundamentals/external-parameters/#connection-strings). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The #connection-strings markdown header pointer does not exist on the fundamentals/external-parameters/ page. #connection-string-values does have a corresponding header though.
Unsure if this is the correct link. Was exploring the docs and found that the previous link returned a 404.
Updated to point at this external parameters doc page instead of the previous app-host-overview page which may not exist any longer.
Updated the link for referencing existing resources in SQL Server documentation.