-
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?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -71,7 +71,7 @@ The name of the parameter is `sql-password`, but really it's just formatting the | |||||
| The `WithReference` method configures a connection in the `ExampleProject` named `database`. | ||||||
|
|
||||||
| <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). | ||||||
|
||||||
| 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.
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.
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 utilizeAddConnectionString.