SchematicNeo4j 0.1.1-beta

This is a prerelease version of SchematicNeo4j.
There is a newer version of this package available.
See the version list below for details.
dotnet add package SchematicNeo4j --version 0.1.1-beta
NuGet\Install-Package SchematicNeo4j -Version 0.1.1-beta
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SchematicNeo4j" Version="0.1.1-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SchematicNeo4j --version 0.1.1-beta
#r "nuget: SchematicNeo4j, 0.1.1-beta"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SchematicNeo4j as a Cake Addin
#addin nuget:?package=SchematicNeo4j&version=0.1.1-beta&prerelease

// Install SchematicNeo4j as a Cake Tool
#tool nuget:?package=SchematicNeo4j&version=0.1.1-beta&prerelease

SchematicNeo4j

A code-first approach to manage a consistent Neo4j graph schema for a domain layer that is defined in a .NET library.

For Developers

Defining your domain schema

Identifying Nodes and their Node Key

Annotate the class with a NodeAttribute (or it can also default to the class name)

[Node(Label = "Person")]
public class Class1 {}

public class Person {}

[Node]
public class Person {}

Annotate the properties that make up the Node Key

public class Car {
  [NodeKey]
  public string Make { get; set; }

  [NodeKey]
  public string Model { get; set;}
}
Using Shared (or inherited) Node Keys

If you want to differentiate between 2 subclasses of an object but they are going to share the same node key, defined by the super class. We can do something like this.

public class Person {
  [NodeKey]
  public string FirstName { get; set; }

  [NodeKey]
  public string LastName { get; set;}
}

[Node(Label="Person:Coach")]
public class Coach : Person {
  public int YearStarted {get; set;}
}

[Node(Label="Person:Player")]
public class Player : Person {
  public string Postion {get; set;}
}

Both players and coaches have a name; players can be coaches, and vice versa. Either way, this keeps our data clean preventing a person from having 2 records in the system.

SchematicNeo4j.Extensions

There are a few provided extensions that we can take advantage of when using the CustomAttributes. Assume the following Vehicle definition:

public class Vehicle {
  [NodeKey]
  public string Make { get; set; }

  [NodeKey]
  public string Model { get; set;}

  [NodeKey]
  public string ModelYear { get; set; }

}

We can get the Label by:

// for a type
var theLabel = typeof(Vehicle).Label();

We can get the Node Key properties by:

// for a type
List<string> vehicleNodeKey = typeof(Vehicle).NodeKey();

Using SchematicNeo4j.Schema.Initialize

Once we have our domain models identified we can use the Schema methods to put it into the graph. You can pass in either an entire assembly, a list, or a single Type.

// Pass an Assembly and driver
SchematicNeo4j.Schema.Initialize(assembly:Assembly.GetAssembly(typeof(DomainSample.Person)), driver);

// Pass a list of domain types
  // Get this assembly
  Assembly a = Assembly.GetExecutingAssembly();
  // Limit to a specific namespace.
  var listOfTypes = a.ExportedTypes.Where(t => t.Namespace == "MyExecutingThing.MyDomain").ToList();
  SchematicNeo4j.Schema.Initialize(listOfTypes, driver);

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.2 43 4/25/2024
5.0.1 79 4/16/2024
5.0.0 73 4/11/2024
1.3.0 554 10/2/2020
1.0.0 489 11/19/2019
0.1.2-beta 392 6/18/2019
0.1.1-beta 385 6/17/2019
0.1.0-beta 402 6/7/2019

Version 0.1.1-beta: Adds inherited, or shared, node keys.
     Version 0.1.0-beta: Initial Release with methods that can accept an assembly, a collection of types, or a single type.
Methods:
     Schema.Initialize
     NodeKey.Create/Drop/Exists/MatchesExisting