pauldeen79.CrossCutting.Common 3.10.2

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

// Install pauldeen79.CrossCutting.Common as a Cake Tool
#tool nuget:?package=pauldeen79.CrossCutting.Common&version=3.10.2

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 (17)

Showing the top 5 NuGet packages that depend on pauldeen79.CrossCutting.Common:

Package Downloads
pauldeen79.ModelFramework.Common

Package Description

pauldeen79.QueryFramework.Abstractions

Package Description

pauldeen79.CrossCutting.Data.Core

Package Description

pauldeen79.ExpressionFramework.Abstractions

Package Description

pauldeen79.CrossCutting.Data.Sql

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.10.2 373 5/9/2024
3.10.1 988 5/3/2024
3.10.0 685 4/27/2024
3.9.0 1,010 4/16/2024
3.8.0 748 4/5/2024
3.7.0 1,553 3/22/2024
3.6.0 299 3/21/2024
3.5.0 842 3/15/2024
3.4.0 654 3/14/2024
3.3.0 3,230 11/24/2023
3.0.0 1,321 10/21/2023
2.10.0 1,899 9/13/2023
2.9.0 601 9/9/2023
2.8.0 533 9/9/2023
2.7.59 382 9/8/2023
2.7.58 388 9/6/2023
2.7.57 483 8/31/2023
2.7.56 351 8/30/2023
2.7.55 2,771 5/15/2023
2.7.54 462 5/15/2023
2.7.53 3,112 5/8/2023
2.7.52 2,629 5/6/2023
2.7.51 501 5/5/2023
2.7.50 877 5/2/2023
2.7.49 499 5/2/2023
2.7.48 446 5/2/2023
2.7.47 465 5/2/2023
2.7.46 421 5/2/2023
2.7.45 484 5/2/2023
2.7.44 444 5/2/2023
2.7.43 461 5/2/2023
2.7.42 472 5/1/2023
2.7.41 414 5/1/2023
2.7.40 1,073 4/28/2023
2.7.39 932 4/27/2023
2.7.38 460 4/27/2023
2.7.37 913 4/26/2023
2.7.36 1,982 4/24/2023
2.7.35 1,876 4/22/2023
2.7.34 1,032 4/20/2023
2.7.33 3,375 4/17/2023
2.7.32 629 4/17/2023
2.7.31 564 4/16/2023
2.7.30 2,074 4/10/2023
2.7.29 543 4/10/2023
2.7.28 2,281 4/9/2023
2.7.27 518 4/9/2023
2.7.26 1,178 4/7/2023
2.7.25 10,871 10/14/2022
2.7.24 1,602 10/14/2022
2.7.23 21,682 9/20/2022
2.7.22 20,175 8/28/2022
2.7.21 12,873 8/26/2022
2.7.20 1,613 8/26/2022
2.7.19 1,580 8/24/2022
2.7.18 3,668 8/15/2022
2.7.17 7,614 7/1/2022
2.7.16 1,609 6/30/2022
2.7.15 1,662 6/29/2022
2.7.14 1,701 6/29/2022
2.7.13 1,660 6/26/2022
2.7.12 1,642 6/24/2022
2.7.11 1,633 6/24/2022
2.7.10 9,362 6/17/2022
2.7.9 1,685 6/16/2022
2.7.8 1,788 6/8/2022
2.7.7 11,186 5/27/2022
2.7.6 79,945 2/27/2022
2.7.5 6,040 2/24/2022
2.7.4 24,523 1/31/2022
2.7.3 28,357 12/22/2021
2.7.2 5,203 12/18/2021
2.7.1 2,331 12/17/2021
2.7.0 3,215 12/16/2021
2.6.2 7,332 12/9/2021
2.6.1 10,102 11/30/2021
2.6.0 2,375 11/28/2021
2.5.3 2,341 11/27/2021
2.5.2 4,826 11/26/2021
2.5.0 4,348 11/26/2021
2.4.2 4,511 11/25/2021
2.4.1 4,748 11/25/2021
2.4.0 3,690 11/23/2021
2.3.0 811 11/22/2021
2.2.5 5,385 11/20/2021
2.2.4 3,589 11/19/2021
2.2.3 2,485 11/18/2021
2.2.2 3,095 11/18/2021
2.2.1 768 11/17/2021
2.2.0 1,545 11/14/2021
2.1.1 917 11/7/2021
2.1.0 1,859 11/1/2021
2.0.3 927 10/31/2021
2.0.2 942 10/31/2021
2.0.1 911 10/31/2021
2.0.0 872 10/31/2021
1.2.1 960 10/30/2021
1.2.0 895 10/27/2021
1.1.0 2,314 9/17/2021
1.0.12 860 9/16/2021
1.0.11 750 4/29/2021
1.0.10 720 4/27/2021
1.0.9 747 4/27/2021
1.0.8 781 4/11/2021
1.0.7 472 4/10/2021
1.0.6 345 4/10/2021
1.0.5 362 4/2/2021
1.0.4 353 3/30/2021
1.0.3 322 3/30/2021
1.0.1 358 3/30/2021