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.Driver NuGet package
  • Creating a driver instance with GraphDatabase.Driver()
  • Verifying connectivity and managing the driver lifecycle with await using
  • Executing Cypher queries using the fluent ExecutableQuery() API
  • Passing parameters and accessing query results
  • Mapping query results to C# objects with AsObject<T>() and mapping attributes
Ready, let's go!