NReco.Data
1.2.10
Prefix Reserved
dotnet add package NReco.Data --version 1.2.10
NuGet\Install-Package NReco.Data -Version 1.2.10
<PackageReference Include="NReco.Data" Version="1.2.10" />
<PackageVersion Include="NReco.Data" Version="1.2.10" />
<PackageReference Include="NReco.Data" />
paket add NReco.Data --version 1.2.10
#r "nuget: NReco.Data, 1.2.10"
#addin nuget:?package=NReco.Data&version=1.2.10
#tool nuget:?package=NReco.Data&version=1.2.10
Fast lightweight data access library for .NET Core (micro-ORM): simple API for CRUD operations, dynamic queries, SQL commands generation (command builder), abstract queries that have simple string representation + parser, schema-less data access, flexible query results mapping to annotated POCO models, app-level data views, RecordSet structure (replacement for DataTable). Try out NReco.Data if you're looking for Dapper alternative with abstract queries and automated SQL generation.
Product | Versions 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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. |
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 2.0
- System.ComponentModel.Annotations (>= 4.4.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on NReco.Data:
Package | Downloads |
---|---|
NReco.GraphQL
Translates GraphQL queries to SQL according to the mapping configuration (JSON). Can be used with any ADO.NET provider. Based on Graphql.NET library. Online demo, usage examples: https://www.nrecosite.com/graphql_to_sql_database.aspx |
|
Sentrid.Configuration
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.2.10 | 8,429 | 3/16/2023 |
1.2.9 | 4,009 | 10/25/2022 |
1.2.8 | 2,979 | 9/19/2022 |
1.2.7 | 2,570 | 2/15/2022 |
1.2.6 | 2,278 | 10/7/2021 |
1.2.5 | 5,777 | 3/2/2021 |
1.2.4 | 4,035 | 12/4/2020 |
1.2.3 | 6,087 | 7/25/2020 |
1.2.2 | 3,234 | 6/25/2020 |
1.2.1 | 1,954 | 6/12/2020 |
1.2.0 | 2,288 | 5/31/2020 |
1.1.1 | 7,451 | 4/12/2020 |
1.1.0 | 1,489 | 2/28/2020 |
1.0.6 | 9,727 | 4/16/2019 |
1.0.5 | 23,523 | 5/23/2018 |
1.0.4 | 13,096 | 10/5/2017 |
1.0.3 | 3,399 | 5/30/2017 |
1.0.2 | 3,576 | 3/24/2017 |
1.0.1 | 3,336 | 3/3/2017 |
1.0.0 | 2,323 | 1/31/2017 |
1.0.0-alpha6 | 3,026 | 9/19/2016 |
Source code and examples: https://github.com/nreco/data
API reference: https://www.nrecosite.com/doc/NReco.Data/
v.1.2.10 changes:
- Make DbFactory.CreateConnection virtual to allow specific connection handling in inheritors #71
v.1.2.9 changes:
- StringTemplate added support of nested tokens (controlled via ReplaceNestedTokens property) #70
v.1.2.8 changes:
- QRawSql/QRaw: ability to specify custom SQL with parameters #69
v.1.2.7 changes:
- StringTemplate: alternative syntax for token placeholders #68
v.1.2.6 changes:
- Not (QNegationNode) is not supported by RelexParser #67
v.1.2.5 changes:
- RecordSet.Column.DataType is null when loaded from the DbDataReader with default "GetColumnSchema" implementation #65
v.1.2.4 changes:
- handle DbGenerated attribute with option "None" correctly #64
v.1.2.3 changes:
- now DbFactory.AddCommandParameter is virtual
- added DbFactory.GetCmdParameterName (to allow very custom param names - like for Snowflake ADO.NET provider)
v.1.2.2 changes:
- fixed DbDataAdapter.Select().ExecuteReader offset/count handling when ApplyOffset=true #63
v.1.2.1 changes:
- QAggregateField: ability to specify custom SQL template #62
v.1.2.0 changes:
- added simple aggregate queries with QAggregateField #60
- fixed issue with RelexBuilder and QVar #61
v.1.1.1 changes:
- fixed issue with DbDataAdapter.Update for RecordSet when query contains parameters that are not mapped to Row columns #55