From 17e82684c5e8f10fc4ebea961a6787830bbb0a74 Mon Sep 17 00:00:00 2001 From: Jiri Cincura Date: Tue, 3 Dec 2024 12:34:57 +0100 Subject: [PATCH 1/2] Add documentation for VFS introduced in https://github.com/dotnet/efcore/pull/34864. --- docs/standard/data/sqlite/connection-strings.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/standard/data/sqlite/connection-strings.md b/docs/standard/data/sqlite/connection-strings.md index d83b3c93295f9..9694f154a4a70 100644 --- a/docs/standard/data/sqlite/connection-strings.md +++ b/docs/standard/data/sqlite/connection-strings.md @@ -106,6 +106,13 @@ A value indicating whether the connection will be pooled. | True | The connection will be pooled. This is the default. | | False | The connection won't be pooled. | +### Vfs + +A value indicating which [VFS](https://www.sqlite.org/vfs.html) implementation to use. When empty or not specified, the default VFS on given platform is used. + +> [!NOTE] +> The Vfs keyword was added in version 10.0. + ## Connection string builder You can use as a strongly typed way of creating connection strings. It can also be used to prevent connection string injection attacks. From b9b14ec11255c9d873eab73ee4ed2eff5960dc26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jiri=20Cincura=20=E2=86=B9?= Date: Wed, 4 Dec 2024 21:37:16 +0100 Subject: [PATCH 2/2] Update docs/standard/data/sqlite/connection-strings.md Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- docs/standard/data/sqlite/connection-strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard/data/sqlite/connection-strings.md b/docs/standard/data/sqlite/connection-strings.md index 9694f154a4a70..98a05a358f962 100644 --- a/docs/standard/data/sqlite/connection-strings.md +++ b/docs/standard/data/sqlite/connection-strings.md @@ -108,7 +108,7 @@ A value indicating whether the connection will be pooled. ### Vfs -A value indicating which [VFS](https://www.sqlite.org/vfs.html) implementation to use. When empty or not specified, the default VFS on given platform is used. +A value indicating which [virtual file system (VFS)](https://www.sqlite.org/vfs.html) implementation to use. When empty or not specified, the default VFS for the platform is used. > [!NOTE] > The Vfs keyword was added in version 10.0.