SchematicNeo4j 1.3.0
See the version list below for details.
dotnet add package SchematicNeo4j --version 1.3.0
NuGet\Install-Package SchematicNeo4j -Version 1.3.0
<PackageReference Include="SchematicNeo4j" Version="1.3.0" />
paket add SchematicNeo4j --version 1.3.0
#r "nuget: SchematicNeo4j, 1.3.0"
// Install SchematicNeo4j as a Cake Addin #addin nuget:?package=SchematicNeo4j&version=1.3.0 // Install SchematicNeo4j as a Cake Tool #tool nuget:?package=SchematicNeo4j&version=1.3.0
A code-first, domain driven, schema management tool for Neo4j and .NET.
Helpful in quickly and consistently managing graph schema for your domain model.
Product | Versions 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. |
-
.NETStandard 2.0
- Neo4j.Driver (>= 4.1.1)
- Neo4j.Driver.Simple (>= 4.1.1)
- SchematicNeo4j.Attributes (>= 1.0.0)
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 | 122 | 4/25/2024 |
5.0.1 | 122 | 4/16/2024 |
5.0.0 | 102 | 4/11/2024 |
1.3.0 | 581 | 10/2/2020 |
1.0.0 | 514 | 11/19/2019 |
0.1.2-beta | 419 | 6/18/2019 |
0.1.1-beta | 407 | 6/17/2019 |
0.1.0-beta | 422 | 6/7/2019 |
Version 1.3.0: Updated to use neo4j-dotnet-driver 4.x with graph version 3.5.x (3.5.17 and 3.5.21 were tested).
Version 1.0.0: Added Index management with Index object that maps to the IndexAttribute.
- Index matching is done by Label and Properties for neo4j version 3.x
- Create/Drop of indexes added to Schema.Initialize and Schema.Clear
- IndexAttribute with Name, Label, Properties, and IsAbstract.
- IsAbstract allows for Indexes to utilize inherited properties and prevents partial indexes from being created.
Version 0.1.2-beta: Fix bug with a type having a partial name match to another type (ex: Car => RedCar)
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
Schema.Clear
NodeKey.Create/Drop/Exists/MatchesExisting
Index.Create/Drop/Exists
Type.Indexes/CreateIndexes/DropIndexes