SQLHelper.DB 5.0.12

There is a newer version of this package available.
See the version list below for details.
dotnet add package SQLHelper.DB --version 5.0.12                
NuGet\Install-Package SQLHelper.DB -Version 5.0.12                
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.12" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SQLHelper.DB --version 5.0.12                
#r "nuget: SQLHelper.DB, 5.0.12"                
#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.
// Install SQLHelper.DB as a Cake Addin
#addin nuget:?package=SQLHelper.DB&version=5.0.12

// Install SQLHelper.DB as a Cake Tool
#tool nuget:?package=SQLHelper.DB&version=5.0.12                

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. 
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.13 208 12/17/2024
5.0.12 214 12/10/2024
5.0.11 76 12/10/2024
5.0.10 73 12/10/2024
5.0.9 130 12/9/2024
5.0.8 298 11/26/2024
5.0.7 81 11/26/2024
5.0.6 219 11/24/2024
5.0.5 88 11/24/2024
5.0.4 114 11/23/2024
4.0.218 168 11/20/2024
4.0.217 120 11/12/2024
4.0.216 255 11/11/2024
4.0.215 143 11/6/2024
4.0.214 186 11/5/2024
4.0.213 141 11/4/2024
4.0.212 156 11/1/2024
4.0.211 137 10/31/2024
4.0.210 138 10/30/2024
4.0.209 135 10/29/2024
4.0.208 192 10/25/2024
4.0.207 208 10/21/2024
4.0.206 187 10/16/2024
4.0.205 201 10/11/2024
4.0.204 149 10/10/2024
4.0.203 145 10/9/2024
4.0.202 225 10/2/2024
4.0.201 157 10/1/2024
4.0.200 182 9/30/2024
4.0.199 213 9/24/2024
4.0.198 176 9/23/2024
4.0.197 230 9/17/2024
4.0.196 237 9/10/2024
4.0.195 232 9/6/2024
4.0.194 247 9/3/2024
4.0.193 224 8/30/2024
4.0.192 171 8/29/2024
4.0.191 168 8/28/2024
4.0.190 181 8/27/2024
4.0.189 195 8/26/2024
4.0.188 196 8/23/2024
4.0.187 263 8/21/2024
4.0.186 369 8/16/2024
4.0.185 177 8/15/2024
4.0.184 188 8/14/2024
4.0.183 183 8/5/2024
4.0.182 147 8/2/2024
4.0.181 163 8/1/2024
4.0.180 237 7/26/2024
4.0.179 179 7/24/2024
4.0.178 238 7/11/2024
4.0.177 162 7/10/2024
4.0.176 111 7/10/2024
4.0.175 193 7/9/2024
4.0.174 297 7/5/2024
4.0.173 220 7/2/2024
4.0.172 268 6/27/2024
4.0.171 179 6/26/2024
4.0.170 247 6/24/2024
4.0.169 1,079 6/19/2024
4.0.168 188 6/18/2024
4.0.167 192 6/17/2024
4.0.166 202 6/14/2024
4.0.165 172 6/13/2024
4.0.164 299 6/3/2024
4.0.163 199 5/31/2024
4.0.162 193 5/30/2024
4.0.161 178 5/29/2024
4.0.160 299 5/27/2024
4.0.159 230 5/23/2024
4.0.158 247 5/21/2024
4.0.157 220 5/17/2024
4.0.156 182 5/16/2024
4.0.155 184 5/15/2024
4.0.154 232 5/8/2024
4.0.153 192 5/7/2024
4.0.152 203 5/6/2024
4.0.151 186 5/3/2024
4.0.150 722 5/2/2024
4.0.149 203 5/1/2024
4.0.148 194 4/30/2024
4.0.147 231 4/29/2024
4.0.146 210 4/25/2024
4.0.145 279 4/16/2024
4.0.144 202 4/12/2024
4.0.143 163 4/12/2024
4.0.142 187 4/11/2024
4.0.141 206 4/10/2024
4.0.140 187 4/9/2024
4.0.139 265 4/1/2024
4.0.138 232 3/29/2024
4.0.137 222 3/26/2024
4.0.136 203 3/22/2024
4.0.135 111 3/22/2024
4.0.134 249 3/18/2024
4.0.133 194 3/15/2024
4.0.132 179 3/14/2024
4.0.131 217 3/13/2024
4.0.130 210 3/11/2024
4.0.129 189 3/8/2024
4.0.128 163 3/7/2024
4.0.127 135 3/6/2024
4.0.126 147 3/5/2024
4.0.125 147 3/4/2024
4.0.124 1,252 3/1/2024
4.0.123 200 2/29/2024
4.0.122 112 2/28/2024
4.0.121 151 2/27/2024
4.0.120 299 2/26/2024
4.0.119 112 2/23/2024
4.0.118 136 2/22/2024
4.0.117 120 2/21/2024
4.0.116 131 2/20/2024
4.0.115 115 2/20/2024
4.0.114 735 2/19/2024
4.0.113 127 2/19/2024
4.0.112 202 2/16/2024
4.0.111 116 2/15/2024
4.0.110 141 2/14/2024
4.0.109 324 2/13/2024
4.0.108 199 2/12/2024
4.0.107 142 2/9/2024
4.0.106 232 2/8/2024
4.0.105 112 2/7/2024
4.0.104 103 2/7/2024
4.0.103 113 2/6/2024
4.0.102 692 2/2/2024
4.0.101 167 2/1/2024
4.0.100 116 2/1/2024
4.0.99 120 1/31/2024
4.0.98 117 1/30/2024
4.0.97 454 1/25/2024
4.0.96 168 1/24/2024
4.0.95 126 1/23/2024
4.0.94 1,200 1/16/2024
4.0.93 116 1/16/2024
4.0.92 204 1/15/2024
4.0.91 211 1/12/2024
4.0.90 125 1/11/2024
4.0.89 126 1/10/2024
4.0.88 491 1/8/2024
4.0.87 593 12/26/2023
4.0.86 117 12/26/2023
4.0.85 122 12/25/2023
4.0.84 366 12/22/2023
4.0.83 306 12/15/2023
4.0.82 122 12/14/2023
4.0.81 106 12/14/2023
4.0.80 144 12/13/2023
4.0.79 125 12/12/2023
4.0.78 815 12/11/2023
4.0.77 301 12/6/2023
4.0.76 258 12/5/2023
4.0.75 413 11/24/2023
4.0.74 281 11/21/2023
4.0.73 250 11/20/2023
4.0.72 195 11/20/2023
4.0.71 226 11/17/2023
4.0.70 534 11/16/2023
4.0.69 208 11/14/2023
4.0.68 292 11/9/2023
4.0.67 244 11/8/2023
4.0.66 209 11/7/2023
4.0.65 207 11/6/2023
4.0.64 216 11/3/2023
4.0.63 302 11/1/2023
4.0.62 133 11/1/2023
4.0.61 245 10/31/2023
4.0.60 222 10/30/2023
4.0.59 215 10/27/2023
4.0.58 203 10/26/2023
4.0.57 212 10/25/2023
4.0.56 212 10/17/2023
4.0.55 269 10/16/2023
4.0.54 292 10/12/2023
4.0.53 205 10/11/2023
4.0.52 253 10/5/2023
4.0.51 294 9/26/2023
4.0.50 292 9/22/2023
4.0.49 218 9/20/2023
4.0.48 201 9/19/2023
4.0.47 124 9/19/2023
4.0.46 247 9/18/2023
4.0.45 292 9/14/2023
4.0.44 215 9/13/2023
4.0.43 218 9/12/2023
4.0.42 253 9/11/2023
4.0.41 145 9/11/2023
4.0.40 213 9/11/2023
4.0.39 379 9/7/2023
4.0.38 218 9/6/2023
4.0.37 270 9/5/2023
4.0.36 156 9/5/2023
4.0.35 248 9/4/2023
4.0.34 291 9/1/2023
4.0.33 276 8/31/2023
4.0.32 242 8/30/2023
4.0.31 145 8/30/2023
4.0.30 271 8/29/2023
4.0.29 401 8/25/2023
4.0.28 335 8/23/2023
4.0.27 342 8/18/2023
4.0.26 225 8/17/2023
4.0.25 136 8/17/2023
4.0.24 142 8/17/2023
4.0.23 454 8/10/2023
4.0.22 249 8/9/2023
4.0.21 226 8/8/2023
4.0.20 162 8/8/2023
4.0.19 301 8/8/2023
4.0.18 366 8/7/2023
4.0.17 458 8/3/2023
4.0.16 388 7/26/2023
4.0.15 356 7/20/2023
4.0.14 361 7/18/2023
4.0.13 170 7/18/2023
4.0.12 157 7/18/2023
4.0.11 592 7/17/2023
4.0.10 171 7/14/2023
4.0.9 170 7/13/2023
4.0.8 160 7/13/2023
4.0.7 174 7/12/2023
4.0.6 168 7/12/2023
4.0.5 220 6/13/2023
4.0.4 1,001 1/30/2023
4.0.3 528 1/30/2023
4.0.2 531 1/27/2023
4.0.1 700 12/13/2022
4.0.0 513 12/12/2022
3.1.49 2,667 6/10/2022
3.1.47 1,811 4/20/2022
3.1.46 799 2/25/2022
3.1.45 2,010 1/11/2022
3.1.44 1,076 1/10/2022
3.1.43 1,133 10/12/2021
3.1.42 450 10/12/2021
3.1.41 1,661 6/17/2021
3.1.40 1,271 6/16/2021
3.1.39 1,153 6/16/2021
3.1.38 968 6/16/2021
3.1.37 736 6/15/2021
3.1.35 1,912 1/7/2021
3.1.34 1,372 12/16/2020
3.1.33 569 12/16/2020
3.1.32 1,178 12/14/2020
3.1.31 3,211 9/13/2020
3.1.30 1,686 6/19/2020
3.1.29 1,150 6/8/2020
3.1.28 2,440 5/12/2020
3.1.27 1,917 5/12/2020
3.1.26 1,433 4/28/2020
3.1.25 1,389 4/16/2020
3.1.23 1,341 4/16/2020
3.1.22 1,382 4/16/2020
3.1.21 1,119 4/15/2020
3.1.20 1,345 4/15/2020
3.1.19 1,420 4/14/2020
3.1.18 1,119 4/14/2020
3.1.17 605 4/14/2020
3.1.16 1,419 4/10/2020
3.1.15 1,436 4/10/2020
3.1.14 3,870 3/26/2020
3.1.13 1,456 3/26/2020
3.1.12 1,639 3/25/2020
3.1.11 1,130 3/25/2020
3.1.10 1,116 3/25/2020
3.1.9 1,560 3/25/2020
3.1.8 1,636 3/24/2020
3.1.7 2,254 3/21/2020
3.1.6 2,148 3/13/2020
3.1.5 1,147 3/13/2020
3.1.3 2,111 2/28/2020
3.1.1.2 609 2/28/2020
3.1.1 930 2/22/2020
3.1.0 1,172 2/21/2020
3.0.4 1,231 2/11/2020
3.0.3 891 2/11/2020
3.0.2 678 2/10/2020
3.0.1 1,636 1/9/2020
3.0.0 1,363 12/23/2019
2.0.18 2,443 6/19/2019
2.0.17 689 6/19/2019
2.0.16 2,109 4/17/2019
2.0.15 1,538 3/14/2019
2.0.14 749 2/22/2019
2.0.13 1,743 2/21/2019
2.0.12 723 2/21/2019
2.0.11 4,477 8/1/2018
2.0.10 1,652 8/1/2018
2.0.9 1,321 7/3/2018
2.0.8 1,799 6/26/2018
2.0.7 1,048 6/26/2018
2.0.6 1,591 6/14/2018
2.0.5 1,683 6/1/2018
2.0.4 1,975 5/22/2018
2.0.3 2,583 5/9/2018
2.0.2 2,246 2/15/2018
2.0.1 1,897 2/13/2018
2.0.0 2,608 1/2/2018
1.0.44 11,222 10/10/2017
1.0.42 942 10/10/2017
1.0.41 1,249 9/29/2017
1.0.40 4,234 9/19/2017
1.0.39 963 9/15/2017
1.0.36 951 9/15/2017
1.0.35 940 9/15/2017
1.0.34 3,210 7/3/2017
1.0.33 1,808 6/16/2017
1.0.32 1,767 6/16/2017
1.0.31 1,005 5/30/2017
1.0.28 1,658 5/30/2017
1.0.27 1,456 5/25/2017
1.0.26 1,726 5/24/2017
1.0.25 1,309 5/19/2017
1.0.24 999 5/19/2017
1.0.23 1,291 5/17/2017
1.0.20 1,098 5/8/2017
1.0.19 1,143 4/7/2017
1.0.18 1,698 3/22/2017
1.0.15 1,436 1/31/2017
1.0.14 1,120 1/24/2017
1.0.13 1,138 1/8/2017
1.0.12 1,107 1/6/2017
1.0.11 1,126 1/6/2017
1.0.10 1,094 1/3/2017
1.0.9 1,219 12/9/2016
1.0.8 1,046 12/1/2016
1.0.0 1,029 9/15/2017