SQLHelper.DB 5.0.72

There is a newer version of this package available.
See the version list below for details.
dotnet add package SQLHelper.DB --version 5.0.72
                    
NuGet\Install-Package SQLHelper.DB -Version 5.0.72
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SQLHelper.DB" Version="5.0.72" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SQLHelper.DB" Version="5.0.72" />
                    
Directory.Packages.props
<PackageReference Include="SQLHelper.DB" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SQLHelper.DB --version 5.0.72
                    
#r "nuget: SQLHelper.DB, 5.0.72"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SQLHelper.DB@5.0.72
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SQLHelper.DB&version=5.0.72
                    
Install as a Cake Addin
#tool nuget:?package=SQLHelper.DB&version=5.0.72
                    
Install as a Cake Tool

SQLHelper

Build status

SQLHelper is a simple class to help with running queries against a database.

Basic Usage

In order to use the system, you do need register it with your ServiceCollection:

serviceCollection.AddCanisterModules();
				

This is required prior to using the SQLHelper class for the first time. Once Canister is set up, you can use the SQLHelper class:

var Configuration = new ConfigurationBuilder()
            .AddInMemoryCollection()
            .Build();
var Instance = new SQLHelper(Configuration, SqlClientFactory.Instance, "ConnectionString");

Or simply ask for an instance using dependency injection:

public MyClass(SQLHelper helper) { ... }

The SQLHelper class takes in a IConfiguration class, a DbProviderFactory class, and the connection string. The connection string can just be the name of a connection string in your configuration object. Once an instance is set up, you can create a batch, add queries, and then execute them.

var Results = Instance.CreateBatch()
            		   .AddQuery(CommandType.Text,"SELECT * FROM [TestDatabase].[dbo].[TestTable]")
            		   .AddQuery(CommandType.Text,"SELECT * FROM [TestDatabase].[dbo].[TestTable2]")
            		   .AddQuery(CommandType.Text,"SELECT * FROM [TestDatabase].[dbo].[TestTable3]")
            		   .Execute();
					   

The Results object then holds the results for all 3 queries and is returned as IList<IList<dynamic>>. So in order to get the results from the queries:

var FirstQueryResults = Results[0];
var SecondQueryResults = Results[1];
var ThirdQueryResults = Results[2];

It is also possible to convert the results from the dynamic type to a class type that you specify:

var TestTableClasses = FirstQueryResults.Select(x => (TestTableClass)x).ToList();

The type will be converted automatically for you with no special type conversion required. SQLHelper also has an ExecuteScalar function:

var Result = Instance.ExecuteScalar<int>();

This will either return the first value of the first set of results OR it will return the number of rows that were effected depending on whether or not the query was a select or not.

Installation

The library is available via Nuget with the package name "SQLHelper.DB". To install it run the following command in the Package Manager Console:

Install-Package SQLHelper.DB

Build Process

In order to build the library you will require the following as a minimum:

  1. Visual Studio 2022

Other than that, just clone the project and you should be able to load the solution and build without too much effort.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on SQLHelper.DB:

Package Downloads
Data.Modeler

Data.Modeler helps to model database schemas using C#.

Holmes

Holmes is a database analysis library designed to suggest improvements and optimizations. Supports .Net Core as well as full .Net.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.73 291 9/18/2025
5.0.72 300 9/17/2025
5.0.71 240 9/11/2025
5.0.70 170 9/10/2025
5.0.69 130 9/10/2025
5.0.68 130 9/10/2025
5.0.67 536 8/19/2025
5.0.66 142 8/19/2025
5.0.65 144 8/19/2025
5.0.64 148 8/19/2025
5.0.63 143 8/19/2025
5.0.62 226 8/18/2025
5.0.61 242 8/15/2025
5.0.60 373 8/6/2025
5.0.59 311 8/5/2025
5.0.58 235 8/5/2025
5.0.57 232 8/5/2025
5.0.56 220 8/5/2025
5.0.55 216 8/5/2025
5.0.54 288 8/4/2025
5.0.53 138 8/4/2025
5.0.52 220 7/28/2025
5.0.51 270 7/17/2025
5.0.50 332 7/14/2025
5.0.46 501 6/30/2025
5.0.45 162 6/30/2025
5.0.44 361 6/27/2025
5.0.43 230 6/27/2025
5.0.42 237 6/26/2025
5.0.41 242 6/18/2025
5.0.39 353 6/10/2025
5.0.38 248 5/30/2025
5.0.37 228 5/23/2025
5.0.36 319 5/14/2025
5.0.34 212 5/2/2025
5.0.33 247 4/28/2025
5.0.32 326 4/10/2025
5.0.30 275 3/15/2025
5.0.28 296 2/24/2025
5.0.27 643 2/12/2025
5.0.25 388 2/3/2025
5.0.24 293 1/30/2025
5.0.23 209 1/29/2025
5.0.22 255 1/24/2025
5.0.21 237 1/22/2025
5.0.20 245 1/16/2025
5.0.19 155 1/15/2025
5.0.15 197 1/13/2025
5.0.14 206 1/9/2025
5.0.13 421 12/17/2024
5.0.12 280 12/10/2024
5.0.11 145 12/10/2024
5.0.10 139 12/10/2024
5.0.9 194 12/9/2024
5.0.8 353 11/26/2024
5.0.7 134 11/26/2024
5.0.6 275 11/24/2024
5.0.5 144 11/24/2024
5.0.4 169 11/23/2024
4.0.218 244 11/20/2024
4.0.217 173 11/12/2024
4.0.216 309 11/11/2024
4.0.215 197 11/6/2024
4.0.214 267 11/5/2024
4.0.213 196 11/4/2024
4.0.212 215 11/1/2024
4.0.211 193 10/31/2024
4.0.210 194 10/30/2024
4.0.209 187 10/29/2024
4.0.208 243 10/25/2024
4.0.207 262 10/21/2024
4.0.206 239 10/16/2024
4.0.205 250 10/11/2024
4.0.204 200 10/10/2024
4.0.203 198 10/9/2024
4.0.202 274 10/2/2024
4.0.201 210 10/1/2024
4.0.200 236 9/30/2024
4.0.199 262 9/24/2024
4.0.198 229 9/23/2024
4.0.197 277 9/17/2024
4.0.196 285 9/10/2024
4.0.195 277 9/6/2024
4.0.194 294 9/3/2024
4.0.193 283 8/30/2024
4.0.192 218 8/29/2024
4.0.191 216 8/28/2024
4.0.190 225 8/27/2024
4.0.189 238 8/26/2024
4.0.188 240 8/23/2024
4.0.187 308 8/21/2024
4.0.186 417 8/16/2024
4.0.185 226 8/15/2024
4.0.184 238 8/14/2024
4.0.183 236 8/5/2024
4.0.182 194 8/2/2024
4.0.181 214 8/1/2024
4.0.180 284 7/26/2024
4.0.179 227 7/24/2024
4.0.178 286 7/11/2024
4.0.177 219 7/10/2024
4.0.176 153 7/10/2024
4.0.175 242 7/9/2024
4.0.174 346 7/5/2024
4.0.173 271 7/2/2024
4.0.172 318 6/27/2024
4.0.171 224 6/26/2024
4.0.170 291 6/24/2024
4.0.169 1,147 6/19/2024
4.0.168 234 6/18/2024
4.0.167 238 6/17/2024
4.0.166 250 6/14/2024
4.0.165 220 6/13/2024
4.0.164 340 6/3/2024
4.0.163 241 5/31/2024
4.0.162 235 5/30/2024
4.0.161 228 5/29/2024
4.0.160 436 5/27/2024
4.0.159 288 5/23/2024
4.0.158 288 5/21/2024
4.0.157 266 5/17/2024
4.0.156 225 5/16/2024
4.0.155 228 5/15/2024
4.0.154 278 5/8/2024
4.0.153 240 5/7/2024
4.0.152 250 5/6/2024
4.0.151 233 5/3/2024
4.0.150 769 5/2/2024
4.0.149 253 5/1/2024
4.0.148 241 4/30/2024
4.0.147 280 4/29/2024
4.0.146 261 4/25/2024
4.0.145 324 4/16/2024
4.0.144 248 4/12/2024
4.0.143 213 4/12/2024
4.0.142 236 4/11/2024
4.0.141 259 4/10/2024
4.0.140 234 4/9/2024
4.0.139 310 4/1/2024
4.0.138 279 3/29/2024
4.0.137 274 3/26/2024
4.0.136 259 3/22/2024
4.0.135 163 3/22/2024
4.0.134 297 3/18/2024
4.0.133 242 3/15/2024
4.0.132 223 3/14/2024
4.0.131 261 3/13/2024
4.0.130 262 3/11/2024
4.0.129 237 3/8/2024
4.0.128 212 3/7/2024
4.0.127 184 3/6/2024
4.0.126 196 3/5/2024
4.0.125 197 3/4/2024
4.0.124 1,309 3/1/2024
4.0.123 248 2/29/2024
4.0.122 159 2/28/2024
4.0.121 201 2/27/2024
4.0.120 353 2/26/2024
4.0.119 164 2/23/2024
4.0.118 188 2/22/2024
4.0.117 169 2/21/2024
4.0.116 184 2/20/2024
4.0.115 164 2/20/2024
4.0.114 784 2/19/2024
4.0.113 179 2/19/2024
4.0.112 259 2/16/2024
4.0.111 165 2/15/2024
4.0.110 190 2/14/2024
4.0.109 373 2/13/2024
4.0.108 245 2/12/2024
4.0.107 184 2/9/2024
4.0.106 275 2/8/2024
4.0.105 157 2/7/2024
4.0.104 147 2/7/2024
4.0.103 154 2/6/2024
4.0.102 735 2/2/2024
4.0.101 210 2/1/2024
4.0.100 161 2/1/2024
4.0.99 166 1/31/2024
4.0.98 160 1/30/2024
4.0.97 500 1/25/2024
4.0.96 211 1/24/2024
4.0.95 171 1/23/2024
4.0.94 1,240 1/16/2024
4.0.93 159 1/16/2024
4.0.92 247 1/15/2024
4.0.91 252 1/12/2024
4.0.90 167 1/11/2024
4.0.89 168 1/10/2024
4.0.88 531 1/8/2024
4.0.87 640 12/26/2023
4.0.86 158 12/26/2023
4.0.85 163 12/25/2023
4.0.84 404 12/22/2023
4.0.83 347 12/15/2023
4.0.82 163 12/14/2023
4.0.81 149 12/14/2023
4.0.80 186 12/13/2023
4.0.79 163 12/12/2023
4.0.78 866 12/11/2023
4.0.77 322 12/6/2023
4.0.76 279 12/5/2023
4.0.75 436 11/24/2023
4.0.74 304 11/21/2023
4.0.73 269 11/20/2023
4.0.72 220 11/20/2023
4.0.71 246 11/17/2023
4.0.70 733 11/16/2023
4.0.69 228 11/14/2023
4.0.68 314 11/9/2023
4.0.67 266 11/8/2023
4.0.66 231 11/7/2023
4.0.65 228 11/6/2023
4.0.64 243 11/3/2023
4.0.63 322 11/1/2023
4.0.62 158 11/1/2023
4.0.61 265 10/31/2023
4.0.60 246 10/30/2023
4.0.59 243 10/27/2023
4.0.58 232 10/26/2023
4.0.57 238 10/25/2023
4.0.56 240 10/17/2023
4.0.55 295 10/16/2023
4.0.54 321 10/12/2023
4.0.53 233 10/11/2023
4.0.52 288 10/5/2023
4.0.51 328 9/26/2023
4.0.50 321 9/22/2023
4.0.49 243 9/20/2023
4.0.48 226 9/19/2023
4.0.47 150 9/19/2023
4.0.46 289 9/18/2023
4.0.45 327 9/14/2023
4.0.44 240 9/13/2023
4.0.43 250 9/12/2023
4.0.42 291 9/11/2023
4.0.41 181 9/11/2023
4.0.40 246 9/11/2023
4.0.39 427 9/7/2023
4.0.38 262 9/6/2023
4.0.37 314 9/5/2023
4.0.36 199 9/5/2023
4.0.35 290 9/4/2023
4.0.34 333 9/1/2023
4.0.33 318 8/31/2023
4.0.32 283 8/30/2023
4.0.31 187 8/30/2023
4.0.30 315 8/29/2023
4.0.29 443 8/25/2023
4.0.28 378 8/23/2023
4.0.27 384 8/18/2023
4.0.26 272 8/17/2023
4.0.25 181 8/17/2023
4.0.24 183 8/17/2023
4.0.23 501 8/10/2023
4.0.22 297 8/9/2023
4.0.21 273 8/8/2023
4.0.20 210 8/8/2023
4.0.19 350 8/8/2023
4.0.18 416 8/7/2023
4.0.17 506 8/3/2023
4.0.16 439 7/26/2023
4.0.15 407 7/20/2023
4.0.14 414 7/18/2023
4.0.13 218 7/18/2023
4.0.12 205 7/18/2023
4.0.11 644 7/17/2023
4.0.10 221 7/14/2023
4.0.9 219 7/13/2023
4.0.8 210 7/13/2023
4.0.7 227 7/12/2023
4.0.6 221 7/12/2023
4.0.5 278 6/13/2023
4.0.4 1,406 1/30/2023
4.0.3 591 1/30/2023
4.0.2 595 1/27/2023
4.0.1 762 12/13/2022
4.0.0 582 12/12/2022
3.1.49 2,768 6/10/2022
3.1.47 1,893 4/20/2022
3.1.46 881 2/25/2022
3.1.45 2,092 1/11/2022
3.1.44 1,159 1/10/2022
3.1.43 1,212 10/12/2021
3.1.42 534 10/12/2021
3.1.41 1,802 6/17/2021
3.1.40 1,354 6/16/2021
3.1.39 1,235 6/16/2021
3.1.38 1,054 6/16/2021
3.1.37 820 6/15/2021
3.1.35 2,005 1/7/2021
3.1.34 1,470 12/16/2020
3.1.33 670 12/16/2020
3.1.32 1,273 12/14/2020
3.1.31 3,311 9/13/2020
3.1.30 1,797 6/19/2020
3.1.29 1,245 6/8/2020
3.1.28 2,547 5/12/2020
3.1.27 2,021 5/12/2020
3.1.26 1,542 4/28/2020
3.1.25 1,492 4/16/2020
3.1.23 1,442 4/16/2020
3.1.22 1,484 4/16/2020
3.1.21 1,224 4/15/2020
3.1.20 1,450 4/15/2020
3.1.19 1,526 4/14/2020
3.1.18 1,224 4/14/2020
3.1.17 711 4/14/2020
3.1.16 1,524 4/10/2020
3.1.15 1,541 4/10/2020
3.1.14 3,975 3/26/2020
3.1.13 1,560 3/26/2020
3.1.12 1,746 3/25/2020
3.1.11 1,235 3/25/2020
3.1.10 1,219 3/25/2020
3.1.9 1,665 3/25/2020
3.1.8 1,740 3/24/2020
3.1.7 2,359 3/21/2020
3.1.6 2,255 3/13/2020
3.1.5 1,251 3/13/2020
3.1.3 2,216 2/28/2020
3.1.1.2 714 2/28/2020
3.1.1 1,035 2/22/2020
3.1.0 1,277 2/21/2020
3.0.4 1,335 2/11/2020
3.0.3 998 2/11/2020
3.0.2 784 2/10/2020
3.0.1 1,742 1/9/2020
3.0.0 1,491 12/23/2019
2.0.18 2,747 6/19/2019
2.0.17 798 6/19/2019
2.0.16 2,221 4/17/2019
2.0.15 1,649 3/14/2019
2.0.14 861 2/22/2019
2.0.13 1,854 2/21/2019
2.0.12 834 2/21/2019
2.0.11 4,697 8/1/2018
2.0.10 1,873 8/1/2018
2.0.9 1,654 7/3/2018
2.0.8 2,131 6/26/2018
2.0.7 1,381 6/26/2018
2.0.6 1,925 6/14/2018
2.0.5 2,017 6/1/2018
2.0.4 2,310 5/22/2018
2.0.3 2,929 5/9/2018
2.0.2 2,598 2/15/2018
2.0.1 2,239 2/13/2018
2.0.0 2,961 1/2/2018
1.0.44 11,454 10/10/2017
1.0.42 1,175 10/10/2017
1.0.41 1,483 9/29/2017
1.0.40 4,464 9/19/2017
1.0.39 1,196 9/15/2017
1.0.36 1,185 9/15/2017
1.0.35 1,168 9/15/2017
1.0.34 3,445 7/3/2017
1.0.33 2,045 6/16/2017
1.0.32 2,001 6/16/2017
1.0.31 1,239 5/30/2017
1.0.28 1,892 5/30/2017
1.0.27 1,693 5/25/2017
1.0.26 1,960 5/24/2017
1.0.25 1,545 5/19/2017
1.0.24 1,233 5/19/2017
1.0.23 1,526 5/17/2017
1.0.20 1,333 5/8/2017
1.0.19 1,375 4/7/2017
1.0.18 1,941 3/22/2017
1.0.15 1,672 1/31/2017
1.0.14 1,365 1/24/2017
1.0.13 1,379 1/8/2017
1.0.12 1,344 1/6/2017
1.0.11 1,361 1/6/2017
1.0.10 1,330 1/3/2017
1.0.9 1,457 12/9/2016
1.0.8 1,283 12/1/2016
1.0.0 1,265 9/15/2017