From 5997c2d7cfdac2d780aacebb9d751af1f40aab4a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Jul 2026 23:14:44 +0000 Subject: [PATCH 1/2] Initial plan From 3698f5844573ff085ded1b26c757989647627632 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Jul 2026 23:16:42 +0000 Subject: [PATCH 2/2] Add note about baseConnectionString in connection string builder section --- docs/standard/data/sqlite/connection-strings.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/standard/data/sqlite/connection-strings.md b/docs/standard/data/sqlite/connection-strings.md index e272f57d63734..ba23ae6826534 100644 --- a/docs/standard/data/sqlite/connection-strings.md +++ b/docs/standard/data/sqlite/connection-strings.md @@ -118,6 +118,9 @@ A value indicating which [virtual file system (VFS)](https://www.sqlite.org/vfs. You can use as a strongly typed way of creating connection strings. It can also be used to prevent connection string injection attacks. +> [!NOTE] +> In the following example, `baseConnectionString` is an existing connection string, such as `Data Source=EncryptionSample.db`. + [!code-csharp[](../../../../samples/snippets/standard/data/sqlite/EncryptionSample/Program.cs?name=snippet_ConnectionStringBuilder)] ## Examples