-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNDatabase.nuspec
28 lines (25 loc) · 4.08 KB
/
NDatabase.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-16"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NDatabase</id>
<version>3.8.0</version>
<title>NDatabase - C# Lightweight Object Database</title>
<authors>Jacek Spólnik</authors>
<owners>Jacek Spólnik</owners>
<licenseUrl>http://www.gnu.org/licenses/lgpl.html</licenseUrl>
<projectUrl>http://ndatabase.wix.com/home</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>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.</description>
<summary>C# Lightweight Object Database</summary>
<releaseNotes>* (+) CascadeDelete attribute - allowing on cascade delete (see issue page - https://ndatabase.codeplex.com/workitem/918)
* (+) OID attribute - allows on mapping internal OID to class defined field (see issue page -https://ndatabase.codeplex.com/workitem/919)
* (X) Bug fix - null values of index fields (compare to / equals methods) (see issue page - https://ndatabase.codeplex.com/workitem/916)
* (X) Bug fix - Select trigger should pass object instead of object representation to the select after method
</releaseNotes>
<copyright>NDatabase Copyright © 2013</copyright>
<tags>C# Embedded Object Database</tags>
</metadata>
</package>