orientechnologies / OrientDB-NET.binary

C#/.NET binary driver for OrientDB
MIT License
93 stars 59 forks source link

Alpha Released of New Driver

https://github.com/orientechnologies/OrientDB.Net.Core

The .Net Driver has been completely overhauled and rewritten to follow modern standards in database driver patterns. Please test and add any issue to the new projects as we work to retire this implementation.


OrientDB-NET.binary is C#/.NET driver for OrientDB document/graph database which implements network binary protocol. For more information look at the Documentation.

Now Contains

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.

Storing a large block of records into the DB via a transaction is about 10 times faster than doing it via individual SQL create statements.

How To Use

This code is still under active development.

For the latest build you can in the driver from NuGet

The unit tests should run cleanly and will start and stop OrientDB on the local machine themselves. You will likely need to change the values in the appsettings.json to point correctly to your local OrientDB install.

For more information look at the Documentation.