SQLHelper.DB 4.0.168

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

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

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.172 58 6/27/2024
4.0.171 92 6/26/2024
4.0.170 145 6/24/2024
4.0.169 209 6/19/2024
4.0.168 131 6/18/2024
4.0.167 132 6/17/2024
4.0.166 134 6/14/2024
4.0.165 127 6/13/2024
4.0.164 224 6/3/2024
4.0.163 153 5/31/2024
4.0.162 139 5/30/2024
4.0.161 132 5/29/2024
4.0.160 128 5/27/2024
4.0.159 171 5/23/2024
4.0.158 176 5/21/2024
4.0.157 167 5/17/2024
4.0.156 133 5/16/2024
4.0.155 140 5/15/2024
4.0.154 190 5/8/2024
4.0.153 152 5/7/2024
4.0.152 156 5/6/2024
4.0.151 146 5/3/2024
4.0.150 580 5/2/2024
4.0.149 139 5/1/2024
4.0.148 148 4/30/2024
4.0.147 172 4/29/2024
4.0.146 164 4/25/2024
4.0.145 209 4/16/2024
4.0.144 153 4/12/2024
4.0.143 119 4/12/2024
4.0.142 136 4/11/2024
4.0.141 144 4/10/2024
4.0.140 140 4/9/2024
4.0.139 195 4/1/2024
4.0.138 190 3/29/2024
4.0.137 164 3/26/2024
4.0.136 157 3/22/2024
4.0.135 85 3/22/2024
4.0.134 198 3/18/2024
4.0.133 143 3/15/2024
4.0.132 135 3/14/2024
4.0.131 156 3/13/2024
4.0.130 155 3/11/2024
4.0.129 140 3/8/2024
4.0.128 115 3/7/2024
4.0.127 92 3/6/2024
4.0.126 108 3/5/2024
4.0.125 97 3/4/2024
4.0.124 996 3/1/2024
4.0.123 141 2/29/2024
4.0.122 88 2/28/2024
4.0.121 113 2/27/2024
4.0.120 223 2/26/2024
4.0.119 98 2/23/2024
4.0.118 101 2/22/2024
4.0.117 91 2/21/2024
4.0.116 99 2/20/2024
4.0.115 77 2/20/2024
4.0.114 546 2/19/2024
4.0.113 92 2/19/2024
4.0.112 149 2/16/2024
4.0.111 102 2/15/2024
4.0.110 105 2/14/2024
4.0.109 250 2/13/2024
4.0.108 143 2/12/2024
4.0.107 106 2/9/2024
4.0.106 165 2/8/2024
4.0.105 83 2/7/2024
4.0.104 83 2/7/2024
4.0.103 85 2/6/2024
4.0.102 523 2/2/2024
4.0.101 125 2/1/2024
4.0.100 88 2/1/2024
4.0.99 93 1/31/2024
4.0.98 86 1/30/2024
4.0.97 345 1/25/2024
4.0.96 119 1/24/2024
4.0.95 90 1/23/2024
4.0.94 945 1/16/2024
4.0.93 86 1/16/2024
4.0.92 155 1/15/2024
4.0.91 159 1/12/2024
4.0.90 98 1/11/2024
4.0.89 100 1/10/2024
4.0.88 384 1/8/2024
4.0.87 482 12/26/2023
4.0.86 85 12/26/2023
4.0.85 92 12/25/2023
4.0.84 281 12/22/2023
4.0.83 242 12/15/2023
4.0.82 96 12/14/2023
4.0.81 81 12/14/2023
4.0.80 106 12/13/2023
4.0.79 97 12/12/2023
4.0.78 638 12/11/2023
4.0.77 248 12/6/2023
4.0.76 194 12/5/2023
4.0.75 319 11/24/2023
4.0.74 209 11/21/2023
4.0.73 192 11/20/2023
4.0.72 167 11/20/2023
4.0.71 168 11/17/2023
4.0.70 358 11/16/2023
4.0.69 145 11/14/2023
4.0.68 204 11/9/2023
4.0.67 187 11/8/2023
4.0.66 160 11/7/2023
4.0.65 155 11/6/2023
4.0.64 164 11/3/2023
4.0.63 225 11/1/2023
4.0.62 106 11/1/2023
4.0.61 186 10/31/2023
4.0.60 177 10/30/2023
4.0.59 162 10/27/2023
4.0.58 158 10/26/2023
4.0.57 159 10/25/2023
4.0.56 167 10/17/2023
4.0.55 209 10/16/2023
4.0.54 226 10/12/2023
4.0.53 159 10/11/2023
4.0.52 205 10/5/2023
4.0.51 226 9/26/2023
4.0.50 227 9/22/2023
4.0.49 177 9/20/2023
4.0.48 155 9/19/2023
4.0.47 97 9/19/2023
4.0.46 195 9/18/2023
4.0.45 233 9/14/2023
4.0.44 164 9/13/2023
4.0.43 166 9/12/2023
4.0.42 207 9/11/2023
4.0.41 111 9/11/2023
4.0.40 164 9/11/2023
4.0.39 308 9/7/2023
4.0.38 175 9/6/2023
4.0.37 220 9/5/2023
4.0.36 123 9/5/2023
4.0.35 190 9/4/2023
4.0.34 227 9/1/2023
4.0.33 228 8/31/2023
4.0.32 195 8/30/2023
4.0.31 117 8/30/2023
4.0.30 224 8/29/2023
4.0.29 316 8/25/2023
4.0.28 279 8/23/2023
4.0.27 276 8/18/2023
4.0.26 182 8/17/2023
4.0.25 110 8/17/2023
4.0.24 114 8/17/2023
4.0.23 364 8/10/2023
4.0.22 205 8/9/2023
4.0.21 195 8/8/2023
4.0.20 138 8/8/2023
4.0.19 245 8/8/2023
4.0.18 298 8/7/2023
4.0.17 397 8/3/2023
4.0.16 323 7/26/2023
4.0.15 296 7/20/2023
4.0.14 288 7/18/2023
4.0.13 145 7/18/2023
4.0.12 129 7/18/2023
4.0.11 466 7/17/2023
4.0.10 138 7/14/2023
4.0.9 143 7/13/2023
4.0.8 134 7/13/2023
4.0.7 144 7/12/2023
4.0.6 139 7/12/2023
4.0.5 191 6/13/2023
4.0.4 932 1/30/2023
4.0.3 484 1/30/2023
4.0.2 482 1/27/2023
4.0.1 651 12/13/2022
4.0.0 468 12/12/2022
3.1.49 2,565 6/10/2022
3.1.47 1,741 4/20/2022
3.1.46 761 2/25/2022
3.1.45 1,934 1/11/2022
3.1.44 1,016 1/10/2022
3.1.43 1,079 10/12/2021
3.1.42 424 10/12/2021
3.1.41 1,587 6/17/2021
3.1.40 1,196 6/16/2021
3.1.39 1,089 6/16/2021
3.1.38 910 6/16/2021
3.1.37 694 6/15/2021
3.1.35 1,844 1/7/2021
3.1.34 1,293 12/16/2020
3.1.33 537 12/16/2020
3.1.32 1,116 12/14/2020
3.1.31 3,017 9/13/2020
3.1.30 1,607 6/19/2020
3.1.29 1,108 6/8/2020
3.1.28 2,318 5/12/2020
3.1.27 1,838 5/12/2020
3.1.26 1,376 4/28/2020
3.1.25 1,331 4/16/2020
3.1.23 1,269 4/16/2020
3.1.22 1,309 4/16/2020
3.1.21 1,067 4/15/2020
3.1.20 1,282 4/15/2020
3.1.19 1,358 4/14/2020
3.1.18 1,068 4/14/2020
3.1.17 580 4/14/2020
3.1.16 1,353 4/10/2020
3.1.15 1,381 4/10/2020
3.1.14 3,713 3/26/2020
3.1.13 1,395 3/26/2020
3.1.12 1,565 3/25/2020
3.1.11 1,061 3/25/2020
3.1.10 1,050 3/25/2020
3.1.9 1,499 3/25/2020
3.1.8 1,564 3/24/2020
3.1.7 2,170 3/21/2020
3.1.6 2,064 3/13/2020
3.1.5 1,080 3/13/2020
3.1.3 2,014 2/28/2020
3.1.1.2 585 2/28/2020
3.1.1 894 2/22/2020
3.1.0 1,118 2/21/2020
3.0.4 1,180 2/11/2020
3.0.3 847 2/11/2020
3.0.2 650 2/10/2020
3.0.1 1,575 1/9/2020
3.0.0 1,276 12/23/2019
2.0.18 2,049 6/19/2019
2.0.17 658 6/19/2019
2.0.16 2,022 4/17/2019
2.0.15 1,477 3/14/2019
2.0.14 718 2/22/2019
2.0.13 1,668 2/21/2019
2.0.12 694 2/21/2019
2.0.11 4,314 8/1/2018
2.0.10 1,569 8/1/2018
2.0.9 1,274 7/3/2018
2.0.8 1,713 6/26/2018
2.0.7 1,005 6/26/2018
2.0.6 1,530 6/14/2018
2.0.5 1,603 6/1/2018
2.0.4 1,906 5/22/2018
2.0.3 2,493 5/9/2018
2.0.2 2,167 2/15/2018
2.0.1 1,804 2/13/2018
2.0.0 2,502 1/2/2018
1.0.44 10,840 10/10/2017
1.0.42 907 10/10/2017
1.0.41 1,190 9/29/2017
1.0.40 4,101 9/19/2017
1.0.39 925 9/15/2017
1.0.36 913 9/15/2017
1.0.35 896 9/15/2017
1.0.34 3,112 7/3/2017
1.0.33 1,724 6/16/2017
1.0.32 1,672 6/16/2017
1.0.31 964 5/30/2017
1.0.28 1,578 5/30/2017
1.0.27 1,385 5/25/2017
1.0.26 1,608 5/24/2017
1.0.25 1,247 5/19/2017
1.0.24 964 5/19/2017
1.0.23 1,237 5/17/2017
1.0.20 1,076 5/8/2017
1.0.19 1,110 4/7/2017
1.0.18 1,630 3/22/2017
1.0.15 1,390 1/31/2017
1.0.14 1,093 1/24/2017
1.0.13 1,093 1/8/2017
1.0.12 1,060 1/6/2017
1.0.11 1,080 1/6/2017
1.0.10 1,052 1/3/2017
1.0.9 1,181 12/9/2016
1.0.8 1,023 12/1/2016
1.0.0 982 9/15/2017