Module
The Driver
In this module, you will learn about the Neo4j .NET Driver and how to use it in your .NET applications.
You will cover the following topics:
- Installing the
Neo4j.DriverNuGet package - Creating a driver instance with
GraphDatabase.Driver() - Verifying connectivity and managing the driver lifecycle with
await using - Executing Full definition for Cypher (opens in a new tab)Neo4j's implementation of GQL, the ISO standard query language for graph databases. It is declarative: you describe the pattern to find, and the database decides how to find it. queries using the fluent
ExecutableQuery()API - Passing parameters and accessing query results
- Mapping query results to C# objects with
AsObject<T>()and mapping attributes