NDatabase 2.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package NDatabase --version 2.0.1
NuGet\Install-Package NDatabase -Version 2.0.1
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="NDatabase" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NDatabase --version 2.0.1
#r "nuget: NDatabase, 2.0.1"
#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 NDatabase as a Cake Addin
#addin nuget:?package=NDatabase&version=2.0.1

// Install NDatabase as a Cake Tool
#tool nuget:?package=NDatabase&version=2.0.1

NDatabase is a simple .Net Object Database. To avoid impedance mismatch overhead between Object and Relational worlds, give a try to NDatabase. NDatabase is a new generation Object Database: a real native and transparent persistence layer for .Net.

- Object because the basic persistent unit is an object, not a table.

- Native and Transparent because it directly persists objects the way they exist in the native programming language, without any conversion.

Using NDatabase as your persistence layer will let you focus on your business logic allowing storing and retrieving native objects in a single line of code. No more Relational to Object mapping is necessary, NDatabase just persists objects the way they are, no matter their complexity.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on NDatabase:

Package Downloads
Yarn.InMemory

Yarn In-memory Provider

ExtaHomeInterfaces

Package Description

CreativeCoders.Data.Ndatabase

Ndatabase implementation of a data repository for CreativeCoders.Data

Tangle.Framework

TangleFramework,通过 Akka.Net 实现 Actor 模型。

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.8.0 44,473 5/12/2013
3.7.0 1,456 5/4/2013
3.6.0 1,568 3/16/2013
3.5.3 1,365 3/10/2013
3.5.2 1,349 3/10/2013
3.5.1 1,351 3/9/2013
3.5.0 1,410 3/2/2013
3.4.0 1,728 2/6/2013
3.3.0 1,403 1/19/2013
3.2.0 1,448 1/13/2013
3.1.0 1,400 1/8/2013
3.0.0 1,373 12/29/2012
2.2.0 1,608 12/9/2012
2.1.0 1,385 12/9/2012
2.0.1 2,137 10/15/2012
2.0.0 1,544 10/13/2012
1.0.4 1,550 10/1/2012
1.0.3.8 1,494 9/5/2012
1.0.2.2 1,469 8/29/2012
1.0.1.45 1,453 8/24/2012

* namespaces, dll name both are changed to NDatabase2
* query API is changed. Now it is using generics in every possible place
* changing the way, how fields from class are stored - for now they are ordered by name which allows db on working well even if someone will change the order of fields in class definition (*BREAKING CHANGE*)
* Added Coverter between NDatabase 1.0.4 and NDatabase 2.0
* Update Logging API, clean code connected with Logging API and logging usage in NDatabase (https://ndatabase.codeplex.com/workitem/802,)
* Add documentation for NDatabase logging
* fixed bug for indexing by property names
* Make the ODBRuntimeException the public class (possibility to catch NDatabase exception for external world), the same for IError
* remove boxing in many places (all possible places for now are using underlying types) https://ndatabase.codeplex.com/workitem/825
* Enum is serialized as the class, not any more as the string
* cleaned OdbConfiguration
* add new unit tests for Layer 2 and Layer 3
*  fixed minor bug in ObjectIntrospector - comparing full class name with simple class name