.NET is one of the Neo4j supported languages and an official driver is provided. Official drivers connect to the databases using BOLT protocol (HTTP is not available).
We are working on supporting Neo4j 4.1 drivers. Please use 4.0 in the meantime.
About connection parameters
We've used test credentials for all the following examples. Please replace them with your real connection parameters.
You'll find all the required information to connect to your database on our admin panel if you navigate to the Connection section. More on connecting to your database [here](🔗)
This section is intended to provide a small working example to connect to a GrapheneDB database using the Java driver. To get more detailed information, visit the driver web page: https://github.com/neo4j/neo4j-dotnet-driver
**Bolt protocol is available in 3.0.0 or higher versions of Neo4j.** You can check your Neo4j version if you navigate to the Overview page of your database.
This driver is shipped exclusively as a NuGet package. To use them in your projects, you will need to use the [Package Manager Console](🔗).
To install the .NET Neo4j Driver, run the following command in the Package Manager Console:
Check the [driver releases](🔗) for the newest driver version available.
The following example just sets up the connection and run a simple query of the Movies dataset example:
You can also use the new `bolt+s
` URI scheme to enable encryption with a full certificate check: