Skip to content

Caleb9/app-dotnet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"

Releases

No releases published

Packages

No packages published

Languages

  • C# 98.4%
  • HTML 1.6%