Lippert.Core 0.9.0

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

// Install Lippert.Core as a Cake Tool
#tool nuget:?package=Lippert.Core&version=0.9.0

Various utilities and helpers spanning the range of collections, configuration, sql generation, extensions, reflection, and more.

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 net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  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 Lippert.Core:

Package Downloads
Lippert.Dapper

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.0 11,746 11/1/2021
0.8.1 397 9/30/2021
0.8.0 929 8/30/2021
0.7.3 321 8/26/2021
0.7.2 321 8/10/2021
0.7.1 2,921 4/20/2021
0.7.0 15,391 3/10/2021
0.6.0 463 3/4/2021
0.5.0 804 5/6/2020
0.4.0 585 4/26/2020
0.3.0 489 11/8/2019
0.2.0 783 4/24/2019
0.1.0 685 4/6/2019

0.1.0
- Initial publish of functionality; waiting on C#8 before bumping version up to 1.0.0 due to a likely removal of TypeSwitch
0.2.0
- Splitting builders out into valued and non-valued variants
- Reducing .Net target framework requirement to 4.5
0.3.0
- Reworking table map construction reflection so that column properties are reduced to their most-base class/interface when used for mapping to avoid duplicates
- Removing TypeSwitch due to its inclusion within C#8
- Fixing a typo in SqlServerQueryBuilder
0.4.0
- Enabling nullable reference types and treating warnings as errors
- Adding a new TryGetValue to RetrievalDictionary in order to easily handle failures during retrieval
- Adding more enumerable extensions
- Converting GetCodebaseDependencies's return to be a lookup, as that makes more sense than the tuple list
- Splitting SqlServerQueryBuilder out into smaller components; adding sql merge builder for bulk record insert/update
0.5.0
- Adding a bi-directional, one-to-one dictionary for mapping between sets of values
- Fixing nullability of column map expressions
- Switching TableMapBuilder to set values on actual object references rather than building lists of columns and values
0.6.0
- Fixing merge record serialization of enums
- Refactoring merge record serialization into testable classes implementing a shared interface
0.7.0
- Adding ability to delete records as part of a merge statement; filters can be specified to limit deletions
0.7.1
- Now able to configure column length for strings and precision/scale for decimals, floats, and doubles in order to prevent undesirable rounding
0.7.2
- Fixing an issue where completely-ignored properties were being included within the output clauses of merge statements
0.7.3
- Merges and inserts now build table variables to output their results into in order to prevent sql explosions when triggers are present
- Refactored lookups of sql types out into a reusable class that isn't tied to merge serialization
- Merges now check for the presence of key column properties when building the on clause; an exception will be thrown describing the problem
0.8.0
- Merges now check for the presence of update column properties when building statements with updates included; an exception will be thrown describing the problem
- NTree now has key functionality in order to retrive a sub-tree node
0.8.1
- Updates, deletes, and delete filters for merges now generate 'is null' when valued column maps specify a null value to filter against
0.9.0
- Byte array properties can now be mapped to varbinary columns, including support for them within merge statements