nreco / data

Fast DB-independent DAL for .NET Core: abstract queries, SQL commands builder, schema-less data access, POCO mapping (micro-ORM).
https://www.nrecosite.com/dalc_net.aspx
MIT License
184 stars 39 forks source link

Add support for DataSet/DataTable in netstandard2.0 / net45 build #26

Closed VitaliyMF closed 6 years ago

VitaliyMF commented 7 years ago

DataSet/DataTable come back in netstandard2.0 ( https://github.com/dotnet/corefx/pull/12426, https://github.com/dotnet/corefx/issues/8622 ), lets add extra overloads to support this structure by [DbDataAdapter] (https://github.com/nreco/data/blob/master/src/NReco.Data/DbDataAdapter.cs) class:

As result, NReco.Data.DbDataAdapter will become generic alternative to provider-specific System.Data.Common.DbDataAdapter implementations (or replacement for it in netstandard1.5-only ADO.NET connectors).

VitaliyMF commented 7 years ago

In netstandard2.0 classes DbDataAdapter, DbCommandBuilder are come back and NReco.Data has classes with the same names. Open questions:

VitaliyMF commented 6 years ago

Decided: