From b88cf34b551f497fadad7b398711fe4eef34c37c Mon Sep 17 00:00:00 2001 From: Gray Delacluyse Date: Tue, 28 Jun 2016 09:41:39 -0600 Subject: [PATCH] Fix version information in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f930c0a4..20a22587 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,14 @@ OrientDB-NET.binary is C#/.NET driver for [OrientDB](http://www.orientdb.org/) d Now Contains --------------------------------------------- -* Written in DNX RC2 for DNX and .Net 4.5.1 support +* Written in DNX Release 1 for DNX and .Net 4.5.1 support * Better handling of ordered edges * Support for LoadRecord and CreateRecord operations - faster than performing the same action via SQL commands * Improved mapping code for generic types to/from ODocuments - much faster, avoids repeated reflection * Support for fetch plans using LoadRecord to pull back a whole tree of objects in one request * Initial support for transactional create/update/delete - should be much faster than multiple individual SQL commands * Better support for derived types - .ToUnique will construct a TDerived if the database record is of type TDerived -* Initial support for the OrientDB 2.0 binary protocol +* Initial support for the OrientDB 2.2 binary protocol * Automatic schema creation from public properties of C# types (Database.Create.Class().CreateProperties().Run()) Fetching a large block of records from the DB via Database.Load.ORID(orid).FetchPlan(plan) and converting them to typed objects about 6 times faster than original code using SQL commands and old mapping.