Ready to get started?

Download a free trial of the Neo4J Data Provider to get started:

 Download Now

Learn more:

Neo4J Icon Neo4J ADO.NET Provider

Rapidly create and deploy powerful .NET applications that integrate with Neo4J.

Working with Neo4J Data in LINQPad



Execute LINQ queries to Neo4J data in LINQPad.

The CData ADO.NET Provider for Neo4J enables you to use standard ADO.NET interfaces like LINQ and the Entity Framework to work with Neo4J data. This article will demonstrate the process of establishing a connection from LINQPad and executing LINQ queries.

Create the Data Model

After downloading and installing both the provider and LINQPad, create a new class library project within Visual Studio.

See the help documentation for a guide to setting up an EF 6 project to use the provider.

  1. Right-click your project and click Add -> New Item -> ADO.NET Entity Data Model. In the resulting dialog, select Code First from database. Click New Connection and specify the connection string options in the resulting wizard.

    To connect to Neo4j, set the following connection properties:

    • Server: The server hosting the Neo4j instance.
    • Port: The port on which the Neo4j service is running. The provider connects to port 7474 by default.
    • User: The username of the user using the Neo4j instance.
    • Password: The password of the user using the Neo4j instance.

    Below is a typical connection string:

    Server=localhost;Port=7474;User=my_user;Password=my_password;
  2. Select the desired tables and views and click Finish to create the data model.

  3. Build the project. The generated files can be used to create the Neo4J connection in LINQPad.

Connect to Neo4J Data in LINQPad

After you have obtained the required connection properties and created the data model assembly, follow the steps below to start using the data model in LINQPad.

  1. Open LINQPad and click Add Connection.

  2. Select the "Use a typed data context from your own assembly" option.

  3. Select Entity Framework DbContext.

  4. Click Browse next to the Path to Custom Assembly box and browse to your project folder. Browse to the .dll or .exe under the bin folder.

  5. Select the name of the DbContext.
  6. If you saved your connection string in App.Config, specify the path to the App.config.

You can now query Neo4J data through LINQPad. For examples of the supported LINQ queries, see the "LINQ and Entity Framework" chapter in the help documentation.