| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -29,6 +29,20 @@ In scenarios where multiple write operations occur simultaneously, especially in | |||
| 29 | 29 | - **`System.Data.SQLite.SQLiteDbConverter`**: Base class for applying updates to the SQLite database schema. | |
| 30 | 30 | - **`System.Data.SQLite.SQLiteDbTransaction`**: Provides methods for managing SQLite transactions. | |
| 31 | 31 | ||
| 32 | + ### Installation | ||
| 33 | + | ||
| 34 | + You can install `NuExt.System.Data.SQLite` via [NuGet](https://www.nuget.org/): | ||
| 35 | + | ||
| 36 | + ```sh | ||
| 37 | + dotnet add package NuExt.System.Data.SQLite | ||
| 38 | + ``` | ||
| 39 | + | ||
| 40 | + Or through the Visual Studio package manager: | ||
| 41 | + | ||
| 42 | + 1. Go to `Tools -> NuGet Package Manager -> Manage NuGet Packages for Solution...`. | ||
| 43 | + 2. Search for `NuExt.System.Data.SQLite`. | ||
| 44 | + 3. Click "Install". | ||
| 45 | + | ||
| 32 | 46 | ### Usage Examples | |
| 33 | 47 | ||
| 34 | 48 | For examples of how to use these classes, see the [samples](samples). These samples provide practical guidance on implementing the library's features in real-world scenarios. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,7 +14,7 @@ System.Data.SQLite.SQLiteDbConnection | |||
| 14 | 14 | System.Data.SQLite.SQLiteDbContext | |
| 15 | 15 | System.Data.SQLite.SQLiteDbConverter | |
| 16 | 16 | System.Data.SQLite.SQLiteDbTransaction</Description> | |
| 17 | - <Version>0.1.3</Version> | ||
| 17 | + <Version>0.1.4</Version> | ||
| 18 | 18 | <RootNamespace /> | |
| 19 | 19 | <GenerateDocumentationFile>True</GenerateDocumentationFile> | |
| 20 | 20 | <NoWarn>$(NoWarn);1591</NoWarn> | |
@@ -28,7 +28,7 @@ System.Data.SQLite.SQLiteDbTransaction</Description> | |||
| 28 | 28 | </ItemGroup> | |
| 29 | 29 | ||
| 30 | 30 | <ItemGroup Condition="'$(UseNuExtPackages)' == 'true'"> | |
| 31 | - <PackageReference Include="NuExt.System.Data" Version="0.1.3" /> | ||
| 31 | + <PackageReference Include="NuExt.System.Data" Version="0.1.4" /> | ||
| 32 | 32 | </ItemGroup> | |
| 33 | 33 | ||
| 34 | 34 | <ItemGroup Condition="'$(UseNuExtPackages)' == 'false'"> | |
| Back | FazBrowse Home | New Git URL |
0 commit comments