Skip to content
Jury Soldatenkov edited this page Nov 22, 2013 · 4 revisions

Installation

The simplest way to do this is to use nuget package manager:

Install-Package Nejdb.Unofficial.

Package contains libraries built for .net40 and .net45. Earlier version are not supported.

Usage

  1. First thing you need is to obtain an instance of nejdb.dll. Recommended way is to use static property Library.Instance. It's safe to reuse across your application, but if there's a reason you need a separated instance of Library - use static method Library.Create()

  2. Create an instance of EJDB database. var database = Library.Instance.CreateDatabase();. Please note, it does not create or open database from disk, just object that can operate over database.

  3. Open

Clone this wiki locally