DataTablePlus 2.0.0

Additional Details

Please install version 2.0.3 or higher.

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package DataTablePlus --version 2.0.0
NuGet\Install-Package DataTablePlus -Version 2.0.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="DataTablePlus" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DataTablePlus --version 2.0.0
#r "nuget: DataTablePlus, 2.0.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 DataTablePlus as a Cake Addin
#addin nuget:?package=DataTablePlus&version=2.0.0

// Install DataTablePlus as a Cake Tool
#tool nuget:?package=DataTablePlus&version=2.0.0

DataTablePlus provides some extensions in order to transform object lists into data tables based on the object mappings (it's able to use the entity framework mappings or just the objects structure) and also some sql helpers which perform some batch operations using the previously built data tables. This application is focused on solving some performance issues while ingesting or updating a lot of data (represented as objects).

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 is compatible.  net452 is compatible.  net46 is compatible.  net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.2.0 2,098 11/11/2021
4.1.1 600 10/4/2021
4.1.0 671 8/19/2021
4.0.1 2,383 2/2/2021
4.0.0 354 1/28/2021
3.0.4 399 1/28/2021
3.0.3 617 1/14/2021

- 2.0.0
- Started using Semantic Versioning 2.0.0 (https://semver.org/);
- Added supporting for .netstandard2.0 and .netcore2.0/2.1;
- Created some DbContext extensions;
- Code enhancements.

- 1.0.0.6
- Created a new structure that allows creating the database table and columns mappings manually. It also has a builder pattern to make the action of mapping these values easier;
- Changed EntityFramework dependency version. Now it accepts any version 6.0.0 and above;
- Code improvements.

- 1.0.0.5
- Created some data table extensions in order to transform data tables into list of objects;
- Removed ServiceStack.Text dependency (It's not needed anymore);
- Added the ability of transforming list of objects into data tables without using DbContext mappings;
- Code improvements.

- 1.0.0.4
- Finished .NET Framework Multi-Targeting supporting (Now it supports the following .NET Framework versions: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2);
- Added supporting for async methods (BulkInsertAsync and BatchUpdateAsync).

- 1.0.0.3
- Added the ability of retrieving primary key values after ingesting a lot of data;
- .NET Framework Multi-Targeting support;
- Code enhancements.

- 1.0.0.2
- Added some additional information when exceptions are thrown;
- Added some additional validations when needed;
- Updated some dependencies;
- Code enhancements.

- 1.0.0.1
- Created DataTablePlus library (Initial Package).