SQLHelper.DB 4.0.180

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

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

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 net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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
4.0.196 121 9/10/2024
4.0.195 167 9/6/2024
4.0.194 184 9/3/2024
4.0.193 172 8/30/2024
4.0.192 125 8/29/2024
4.0.191 125 8/28/2024
4.0.190 132 8/27/2024
4.0.189 137 8/26/2024
4.0.188 153 8/23/2024
4.0.187 206 8/21/2024
4.0.186 283 8/16/2024
4.0.185 136 8/15/2024
4.0.184 144 8/14/2024
4.0.183 140 8/5/2024
4.0.182 108 8/2/2024
4.0.181 123 8/1/2024
4.0.180 152 7/26/2024
4.0.179 127 7/24/2024
4.0.178 201 7/11/2024
4.0.177 121 7/10/2024
4.0.176 82 7/10/2024
4.0.175 139 7/9/2024
4.0.174 242 7/5/2024
4.0.173 189 7/2/2024
4.0.172 226 6/27/2024
4.0.171 148 6/26/2024
4.0.170 196 6/24/2024
4.0.169 693 6/19/2024
4.0.168 153 6/18/2024
4.0.167 152 6/17/2024
4.0.166 154 6/14/2024
4.0.165 137 6/13/2024
4.0.164 237 6/3/2024
4.0.163 163 5/31/2024
4.0.162 148 5/30/2024
4.0.161 141 5/29/2024
4.0.160 192 5/27/2024
4.0.159 180 5/23/2024
4.0.158 180 5/21/2024
4.0.157 172 5/17/2024
4.0.156 136 5/16/2024
4.0.155 145 5/15/2024
4.0.154 195 5/8/2024
4.0.153 158 5/7/2024
4.0.152 162 5/6/2024
4.0.151 150 5/3/2024
4.0.150 587 5/2/2024
4.0.149 150 5/1/2024
4.0.148 159 4/30/2024
4.0.147 174 4/29/2024
4.0.146 169 4/25/2024
4.0.145 215 4/16/2024
4.0.144 159 4/12/2024
4.0.143 131 4/12/2024
4.0.142 148 4/11/2024
4.0.141 150 4/10/2024
4.0.140 146 4/9/2024
4.0.139 203 4/1/2024
4.0.138 194 3/29/2024
4.0.137 173 3/26/2024
4.0.136 161 3/22/2024
4.0.135 89 3/22/2024
4.0.134 203 3/18/2024
4.0.133 150 3/15/2024
4.0.132 142 3/14/2024
4.0.131 165 3/13/2024
4.0.130 164 3/11/2024
4.0.129 149 3/8/2024
4.0.128 131 3/7/2024
4.0.127 104 3/6/2024
4.0.126 125 3/5/2024
4.0.125 115 3/4/2024
4.0.124 1,012 3/1/2024
4.0.123 155 2/29/2024
4.0.122 102 2/28/2024
4.0.121 124 2/27/2024
4.0.120 230 2/26/2024
4.0.119 105 2/23/2024
4.0.118 109 2/22/2024
4.0.117 97 2/21/2024
4.0.116 105 2/20/2024
4.0.115 89 2/20/2024
4.0.114 557 2/19/2024
4.0.113 102 2/19/2024
4.0.112 158 2/16/2024
4.0.111 107 2/15/2024
4.0.110 112 2/14/2024
4.0.109 258 2/13/2024
4.0.108 149 2/12/2024
4.0.107 112 2/9/2024
4.0.106 172 2/8/2024
4.0.105 91 2/7/2024
4.0.104 91 2/7/2024
4.0.103 91 2/6/2024
4.0.102 534 2/2/2024
4.0.101 134 2/1/2024
4.0.100 91 2/1/2024
4.0.99 99 1/31/2024
4.0.98 94 1/30/2024
4.0.97 354 1/25/2024
4.0.96 127 1/24/2024
4.0.95 105 1/23/2024
4.0.94 954 1/16/2024
4.0.93 93 1/16/2024
4.0.92 163 1/15/2024
4.0.91 164 1/12/2024
4.0.90 102 1/11/2024
4.0.89 105 1/10/2024
4.0.88 391 1/8/2024
4.0.87 494 12/26/2023
4.0.86 88 12/26/2023
4.0.85 95 12/25/2023
4.0.84 284 12/22/2023
4.0.83 251 12/15/2023
4.0.82 101 12/14/2023
4.0.81 84 12/14/2023
4.0.80 110 12/13/2023
4.0.79 101 12/12/2023
4.0.78 644 12/11/2023
4.0.77 255 12/6/2023
4.0.76 197 12/5/2023
4.0.75 322 11/24/2023
4.0.74 212 11/21/2023
4.0.73 195 11/20/2023
4.0.72 170 11/20/2023
4.0.71 171 11/17/2023
4.0.70 398 11/16/2023
4.0.69 150 11/14/2023
4.0.68 209 11/9/2023
4.0.67 193 11/8/2023
4.0.66 165 11/7/2023
4.0.65 160 11/6/2023
4.0.64 169 11/3/2023
4.0.63 230 11/1/2023
4.0.62 111 11/1/2023
4.0.61 191 10/31/2023
4.0.60 182 10/30/2023
4.0.59 167 10/27/2023
4.0.58 163 10/26/2023
4.0.57 164 10/25/2023
4.0.56 172 10/17/2023
4.0.55 214 10/16/2023
4.0.54 231 10/12/2023
4.0.53 165 10/11/2023
4.0.52 210 10/5/2023
4.0.51 236 9/26/2023
4.0.50 231 9/22/2023
4.0.49 181 9/20/2023
4.0.48 159 9/19/2023
4.0.47 101 9/19/2023
4.0.46 199 9/18/2023
4.0.45 237 9/14/2023
4.0.44 168 9/13/2023
4.0.43 170 9/12/2023
4.0.42 211 9/11/2023
4.0.41 121 9/11/2023
4.0.40 174 9/11/2023
4.0.39 312 9/7/2023
4.0.38 179 9/6/2023
4.0.37 224 9/5/2023
4.0.36 127 9/5/2023
4.0.35 194 9/4/2023
4.0.34 231 9/1/2023
4.0.33 230 8/31/2023
4.0.32 199 8/30/2023
4.0.31 121 8/30/2023
4.0.30 226 8/29/2023
4.0.29 318 8/25/2023
4.0.28 281 8/23/2023
4.0.27 278 8/18/2023
4.0.26 184 8/17/2023
4.0.25 112 8/17/2023
4.0.24 116 8/17/2023
4.0.23 366 8/10/2023
4.0.22 207 8/9/2023
4.0.21 196 8/8/2023
4.0.20 140 8/8/2023
4.0.19 247 8/8/2023
4.0.18 300 8/7/2023
4.0.17 399 8/3/2023
4.0.16 327 7/26/2023
4.0.15 299 7/20/2023
4.0.14 300 7/18/2023
4.0.13 148 7/18/2023
4.0.12 132 7/18/2023
4.0.11 473 7/17/2023
4.0.10 141 7/14/2023
4.0.9 146 7/13/2023
4.0.8 137 7/13/2023
4.0.7 148 7/12/2023
4.0.6 142 7/12/2023
4.0.5 194 6/13/2023
4.0.4 934 1/30/2023
4.0.3 486 1/30/2023
4.0.2 484 1/27/2023
4.0.1 654 12/13/2022
4.0.0 475 12/12/2022
3.1.49 2,576 6/10/2022
3.1.47 1,749 4/20/2022
3.1.46 765 2/25/2022
3.1.45 1,942 1/11/2022
3.1.44 1,018 1/10/2022
3.1.43 1,083 10/12/2021
3.1.42 427 10/12/2021
3.1.41 1,595 6/17/2021
3.1.40 1,199 6/16/2021
3.1.39 1,092 6/16/2021
3.1.38 913 6/16/2021
3.1.37 697 6/15/2021
3.1.35 1,846 1/7/2021
3.1.34 1,297 12/16/2020
3.1.33 540 12/16/2020
3.1.32 1,121 12/14/2020
3.1.31 3,080 9/13/2020
3.1.30 1,612 6/19/2020
3.1.29 1,109 6/8/2020
3.1.28 2,319 5/12/2020
3.1.27 1,839 5/12/2020
3.1.26 1,377 4/28/2020
3.1.25 1,332 4/16/2020
3.1.23 1,270 4/16/2020
3.1.22 1,310 4/16/2020
3.1.21 1,068 4/15/2020
3.1.20 1,289 4/15/2020
3.1.19 1,359 4/14/2020
3.1.18 1,069 4/14/2020
3.1.17 581 4/14/2020
3.1.16 1,354 4/10/2020
3.1.15 1,382 4/10/2020
3.1.14 3,715 3/26/2020
3.1.13 1,397 3/26/2020
3.1.12 1,573 3/25/2020
3.1.11 1,063 3/25/2020
3.1.10 1,052 3/25/2020
3.1.9 1,501 3/25/2020
3.1.8 1,566 3/24/2020
3.1.7 2,172 3/21/2020
3.1.6 2,066 3/13/2020
3.1.5 1,082 3/13/2020
3.1.3 2,015 2/28/2020
3.1.1.2 586 2/28/2020
3.1.1 895 2/22/2020
3.1.0 1,120 2/21/2020
3.0.4 1,181 2/11/2020
3.0.3 848 2/11/2020
3.0.2 651 2/10/2020
3.0.1 1,576 1/9/2020
3.0.0 1,282 12/23/2019
2.0.18 2,238 6/19/2019
2.0.17 660 6/19/2019
2.0.16 2,025 4/17/2019
2.0.15 1,483 3/14/2019
2.0.14 722 2/22/2019
2.0.13 1,670 2/21/2019
2.0.12 698 2/21/2019
2.0.11 4,319 8/1/2018
2.0.10 1,574 8/1/2018
2.0.9 1,278 7/3/2018
2.0.8 1,724 6/26/2018
2.0.7 1,009 6/26/2018
2.0.6 1,535 6/14/2018
2.0.5 1,607 6/1/2018
2.0.4 1,910 5/22/2018
2.0.3 2,504 5/9/2018
2.0.2 2,181 2/15/2018
2.0.1 1,810 2/13/2018
2.0.0 2,509 1/2/2018
1.0.44 10,851 10/10/2017
1.0.42 913 10/10/2017
1.0.41 1,199 9/29/2017
1.0.40 4,112 9/19/2017
1.0.39 931 9/15/2017
1.0.36 917 9/15/2017
1.0.35 906 9/15/2017
1.0.34 3,118 7/3/2017
1.0.33 1,730 6/16/2017
1.0.32 1,676 6/16/2017
1.0.31 968 5/30/2017
1.0.28 1,589 5/30/2017
1.0.27 1,389 5/25/2017
1.0.26 1,621 5/24/2017
1.0.25 1,253 5/19/2017
1.0.24 969 5/19/2017
1.0.23 1,242 5/17/2017
1.0.20 1,080 5/8/2017
1.0.19 1,116 4/7/2017
1.0.18 1,636 3/22/2017
1.0.15 1,394 1/31/2017
1.0.14 1,097 1/24/2017
1.0.13 1,103 1/8/2017
1.0.12 1,064 1/6/2017
1.0.11 1,085 1/6/2017
1.0.10 1,058 1/3/2017
1.0.9 1,185 12/9/2016
1.0.8 1,027 12/1/2016
1.0.0 986 9/15/2017