Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1.25 KB

README.adoc

File metadata and controls

36 lines (23 loc) · 1.25 KB

Building Neo4j Applications with .NET

Learn how to interact with Neo4j from .NET using the Neo4j .NET driver.

For a complete walkthrough of this repository, enroll now.

Setup

  1. Clone Repository

  2. Install .NET 6 SDK. Microsoft .NET 6.0 installers.

  3. Run dotnet build

Connections

Connection details to your neo4j database are located in Neoflix/appsettings.json

A note on comments

you may spot a number of comments in this repository that look like:

// tag::something[]
SomeCode()
// end::something[]

We use Asciidoc to author our courses. Using these tags means that we can use a macro to include portions of code directly into the course itself.

From the point of view of the course, you can go ahead and ignore them.

Filtering tests from command line

dotnet test --logger "console;verbosity=detailed" --filter "Neoflix.Challenges._01_ConnectToNeo4j"