Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.7 KB

README.md

File metadata and controls

45 lines (32 loc) · 1.7 KB

EdgeDB.Net

NuGet Tests Discord

EdgeDB.Net is a community maintained .NET driver for the EdgeDB database.

Installation

EdgeDB DotNet is distributed through the NuGet package manager; the most recommended way to install it is to use the dotnet command line tool or NuGet package manager in Visual Studio.

$ dotnet add package EdgeDB.Net.Driver

Examples

You can view our curated examples here. We also have a demo asp.net project you can view here. You're more than welcome to contribute to the examples!

Compiling

If you want to build the EdgeDB.Net project from source, you will need the .NET 6 SDK.

Once you have the SDK installed you can run the dotnet build command in the root directory of the project:

$ dotnet build

Testing

You can run the test suite by using the dotnet test command like so:

$ dotnet test