data icon indicating copy to clipboard operation
data copied to clipboard

Fast DB-independent DAL for .NET Core: abstract queries, SQL commands builder, schema-less data access, POCO mapping (micro-ORM).

Results 5 data issues
Sort by recently updated
recently updated
newest added

Please check this project using SonarQube. I added this C# project on CI integration with SonarQube. Here's some (not all) of the QA analysis I get: Nreco\src\NReco.Data\RecordSet.cs(536,10): warning CS1570: XML...

question

Sometimes access to the database records should be controlled on a data layer. Typical situations: - SaaS applications that use single database for all "instances"; in this case data is...

example

It is possible to add DbDataAdapter for typed CRUD operations with POCO with methods: ``` class DbDataAdapter { T LoadByKey(params object[] key); List Load(QConditionNode condition); // maybe this method should...

enhancement

DbDataAdapter.SelectQuery.SetMapper was added in #28 , lets add simple example that illustrates how to use it (map select result to several POCO models, custom mapping logic).

example

In some cases it is useful to have fast access to in-memory rows represented by RecordSet structure (for example, for getting rows by ID values - like Legacy DataRowCollection.Find method)....

enhancement