pauldeen79.CrossCutting.Data.Sql 6.0.1

dotnet add package pauldeen79.CrossCutting.Data.Sql --version 6.0.1
NuGet\Install-Package pauldeen79.CrossCutting.Data.Sql -Version 6.0.1
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="pauldeen79.CrossCutting.Data.Sql" Version="6.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add pauldeen79.CrossCutting.Data.Sql --version 6.0.1
#r "nuget: pauldeen79.CrossCutting.Data.Sql, 6.0.1"
#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 pauldeen79.CrossCutting.Data.Sql as a Cake Addin
#addin nuget:?package=pauldeen79.CrossCutting.Data.Sql&version=6.0.1

// Install pauldeen79.CrossCutting.Data.Sql as a Cake Tool
#tool nuget:?package=pauldeen79.CrossCutting.Data.Sql&version=6.0.1

CrossCutting

Generic utilities and other stuff, usable in any layer of any solution. We're targeting .NET Standard 2.0, so you can even use .NET Framework 4.x if you want to.

This repository consists of the following packages:

Package name Description
CrossCutting.Common Provider for system date and user name, some useful extension methods on System.Object and System.String, and the Result class
CrossCutting.Common.Testing Helps you test constructors on null checks
CrossCutting.Data.Abstractions Abstraction for executing database commands using System.Data namespace (IDbConnection and IDbCommand)
CrossCutting.Data.Core Default implementation of database commands
CrossCutting.Data.Sql Extension methods for working with database commands in System.Data namespace (IDbConnection)
CrossCutting.DataTableDumper Produces flat-text data tables from objects
CrossCutting.Utilities.ObjectDumper Produces readable flat-text representation from objects, for use in logging
CrossCutting.Utilities.Parsers Parser for pipe-delmited data table strings, TSQL INSERT INTO statements, function strings, math expressions and formattable strings (dynamic interpolated strings)
System.Data.Stub Stubs for System.Data interfaces like IDbConnection, IDbCommand and IDataReader

Using NSubstitute or Moq as mock factory for CrossCutting.Common.Testing

To use NSubstitute as a mock factory for the code in CrossCutting.Common.Testing, create a test helper project within your solution, and add the following code:

    public static void ShouldThrowArgumentNullExceptionsInConstructorsOnNullArguments(
        this Type type,
        Func<ParameterInfo, bool>? parameterPredicate = null,
        Func<ParameterInfo, object?>? parameterReplaceDelegate = null,
        Func<ConstructorInfo, bool>? constructorPredicate = null)
        => ShouldThrowArgumentNullExceptionsInConstructorsOnNullArguments(
            type,
            t => t.CreateInstance(parameterType => Substitute.For(new[] { parameterType }, Array.Empty<object>()), parameterReplaceDelegate, constructorPredicate),
            parameterPredicate,
            parameterReplaceDelegate,
            constructorPredicate);

You can easily replace NSubstitute with Moq, if you want, by changing the factory delegate argument to this:

t => t.CreateInstance(parameterType => ((Mock)Activator.CreateInstance(typeof(Mock<>).MakeGenericType(parameterType))).Object, parameterReplaceDelegate, constructorPredicate),

Upgrade from 2.x to 3.0

There has been a breaking change in the Result class, which lead to a new major version. To port the old code, you can fix most errors by replace this:

Result<([^>]+)>\.([^(]+)\(

With this:

Result.$2<$1>(
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on pauldeen79.CrossCutting.Data.Sql:

Package Downloads
pauldeen79.QueryFramework.SqlServer

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.1 117 5/9/2024
6.0.0 140 5/5/2024
5.1.1 104 5/3/2024
5.1.0 116 4/27/2024
5.0.0 142 4/24/2024
4.0.0 152 4/5/2024
3.7.0 181 3/22/2024
3.6.0 87 3/21/2024
3.5.0 132 3/15/2024
3.4.0 132 3/14/2024
3.3.0 400 11/24/2023
3.2.0 153 11/19/2023
3.0.0 125 10/21/2023
2.10.0 221 9/13/2023
2.9.0 134 9/9/2023
2.8.0 123 9/9/2023
2.7.59 121 9/8/2023
2.7.58 127 9/6/2023
2.7.57 132 8/31/2023
2.7.56 131 8/30/2023
2.7.55 285 5/15/2023
2.7.54 136 5/15/2023
2.7.53 348 5/8/2023
2.7.52 164 5/6/2023
2.7.51 138 5/5/2023
2.7.50 154 5/2/2023
2.7.49 141 5/2/2023
2.7.48 142 5/2/2023
2.7.47 138 5/2/2023
2.7.46 127 5/2/2023
2.7.45 144 5/2/2023
2.7.44 153 5/2/2023
2.7.43 161 5/2/2023
2.7.42 159 5/1/2023
2.7.41 158 5/1/2023
2.7.40 169 4/28/2023
2.7.39 169 4/27/2023
2.7.38 166 4/27/2023
2.7.37 181 4/26/2023
2.7.36 176 4/24/2023
2.7.35 229 4/22/2023
2.7.34 181 4/20/2023
2.7.33 199 4/17/2023
2.7.32 200 4/17/2023
2.7.31 182 4/16/2023
2.7.30 276 4/10/2023
2.7.29 186 4/10/2023
2.7.28 180 4/9/2023
2.7.27 187 4/9/2023
2.7.26 171 4/7/2023
2.7.25 381 10/14/2022
2.7.24 392 10/14/2022
2.7.23 389 9/20/2022
2.7.22 387 8/28/2022
2.7.21 393 8/26/2022
2.7.20 384 8/26/2022
2.7.19 399 8/24/2022
2.7.18 674 8/15/2022
2.7.17 421 7/1/2022
2.7.16 418 6/30/2022
2.7.15 413 6/29/2022
2.7.14 435 6/29/2022
2.7.13 458 6/26/2022
2.7.12 442 6/24/2022
2.7.11 409 6/24/2022
2.7.10 405 6/17/2022
2.7.9 424 6/16/2022
2.7.8 427 6/8/2022
2.7.7 679 5/27/2022
2.7.6 3,980 2/27/2022
2.7.5 680 2/24/2022
2.7.4 2,551 1/31/2022
2.7.3 435 12/22/2021
2.7.2 503 12/18/2021
2.7.1 386 12/17/2021
2.7.0 405 12/16/2021
2.6.2 1,037 12/9/2021
2.6.1 435 11/30/2021
2.6.0 393 11/28/2021
2.5.3 389 11/27/2021
2.5.2 2,249 11/26/2021
2.5.0 2,449 11/26/2021
2.4.2 3,227 11/25/2021
2.4.1 2,688 11/25/2021
2.4.0 590 11/23/2021
2.3.0 294 11/22/2021
2.2.5 1,452 11/20/2021
2.2.4 902 11/19/2021
2.2.3 452 11/18/2021
2.2.2 490 11/18/2021
2.2.1 345 11/17/2021
2.2.0 374 11/14/2021
2.1.1 384 11/7/2021
2.1.0 448 11/1/2021
2.0.3 365 10/31/2021
2.0.2 391 10/31/2021
2.0.1 402 10/31/2021
2.0.0 362 10/31/2021
1.2.1 427 10/30/2021
1.2.0 354 10/27/2021
1.1.0 611 9/17/2021
1.0.12 362 9/16/2021