Stardust.Paradox.Data
1.4.3
See the version list below for details.
dotnet add package Stardust.Paradox.Data --version 1.4.3
NuGet\Install-Package Stardust.Paradox.Data -Version 1.4.3
<PackageReference Include="Stardust.Paradox.Data" Version="1.4.3" />
paket add Stardust.Paradox.Data --version 1.4.3
#r "nuget: Stardust.Paradox.Data, 1.4.3"
// Install Stardust.Paradox.Data as a Cake Addin #addin nuget:?package=Stardust.Paradox.Data&version=1.4.3 // Install Stardust.Paradox.Data as a Cake Tool #tool nuget:?package=Stardust.Paradox.Data&version=1.4.3
Usage (asp.net core)
Startup.cs
ConfigureServices
Add the generated entity implementations to the IOC container (I will provide an extention method to make this easier)
services.AddEntityBinding((entityType, entityImplementation) => services.AddTransient(entityType, entityImplementation))
.AddScoped<MyEntityContext,MyEntityContext>()
.AddScoped<IGremlinLanguageConnector>(s => new CosmosDbLanguageConnector(DbAccountName, AccessKey, "databaseName","collectionName"));
Defining the model
[VertexLabel("person")]
public interface IPerson : IVertex
{
string Id {get;}
string FirstName { get; set; }
string LastName { get; set; }
string Email { get; set; }
IEdgeCollection<IPerson> Parents { get; }
IEdgeCollection<IPerson> Children { get; }
IEdgeCollection<IPerson> Siblings { get; }
[EdgeLabel("city")] //pointing to the Residents property in ICity
IEdgeReference<ICity> HomeCity { get; }//use IEdgeReference to enable task-async operations
IEdgeCollection<ICompany> Employers { get; }
}
[VertexLabel("city")]
public interface ICity : IVertex
{
string Id { get; }
string Name { get; set; }
string ZipCode { get; set; }
[ReverseEdgeLabel("city")] //pointing to the HomCity property in IPerson
IEdgeCollection<Iperson> Residents { get; } //use IEdgeCollection to enable task-async operations on the collection
IEdgeReference<ICountry> Country { get; }
}
[VertexLabel("company")]
public interface ICompany : IVertex
{
string Id { get; }
string Name { get; set; }
IEdgeCollection<ICompany> Employees { get; }
}
[VertexLabel("country")]
public interface ICountry : IVertex
{
string Id { get; }
string Name { get; set; }
string CountryCode { get; set; }
string PhoneNoPrefix { get; set; }
IEdgeCollection<ICity> Cities { get; }
}
Defining the entity context and generating the entity implementations
public class MyEntityContext : Stardust.Paradox.Data.GraphContextBase
{
public IGraphSet<IPerson> Persons => GraphSet<IPerson>();
public IGraphSet<ICity> Cities => GraphSet<ICity>();
public IGraphSet<ICountry> Countries => GraphSet<ICountry>();
public IGraphSet<ICompany> Companies => GraphSet<ICompany>();
public MyEntityContext(IGremlinLanguageConnector connector, IServiceProvider resolver) : base(connector, resolver)
{
}
protected override bool InitializeModel(IGraphConfiguration configuration)
{
//Added some fluent configuration of the edges
configuration.ConfigureCollection<IPerson>()
.AddEdge(t => t.Children, "children").Reverse<IPerson>(t => t.Parents)
.ConfigureCollection<ICity>()
.ConfigureCollection<ICountry>()
.AddEdge(t=>t.Cities).Reverse<ICountry>(t=>t.Country)
.ConfigureCollection<ICompany>()
.AddEdge(t => t.Employees, "employees").Reverse<IPerson>(t => t.Employers);
return true;
}
}
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
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1)
- Newtonsoft.Json (>= 10.0.3)
- Stardust.Paradox.Data.Annotations (>= 1.3.2)
- Stardust.Particles (>= 5.0.1)
- System.Reflection (>= 4.3.0)
- System.Reflection.Emit (>= 4.3.0)
- System.Reflection.Emit.ILGeneration (>= 4.3.0)
- System.Reflection.Emit.Lightweight (>= 4.3.0)
- System.Reflection.Primitives (>= 4.3.0)
- System.Reflection.TypeExtensions (>= 4.4.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Stardust.Paradox.Data:
Package | Downloads |
---|---|
Stardust.Paradox.Data.Providers.Gremlin
Entityframework styled tool for accessing gremlin based graph databases like CosmosDB and Apache Tinkerpop A database connector based on gremlin.net |
|
Stardust.Paradox.Data.Providers.CosmosDb
[This package will be deprecated in V 3.0, consider moving to 'Stardust.Paradox.Data.Providers.Gremlin'] Connector for CosmosDb using the document client |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.0-rc03 | 797 | 2/14/2020 |
3.0.0-rc01 | 531 | 2/14/2020 |
2.3.16 | 109 | 11/1/2024 |
2.3.15 | 242 | 10/30/2024 |
2.3.14 | 2,155 | 10/20/2023 |
2.3.13 | 153 | 10/20/2023 |
2.3.10 | 332 | 9/22/2023 |
2.3.9 | 283 | 9/7/2023 |
2.3.8 | 3,171 | 2/7/2023 |
2.3.7 | 2,763 | 5/4/2022 |
2.3.6 | 4,138 | 10/12/2020 |
2.3.5 | 480 | 10/7/2020 |
2.3.4 | 3,709 | 1/13/2020 |
2.3.3 | 619 | 1/8/2020 |
2.3.2 | 551 | 1/8/2020 |
2.3.1 | 501 | 1/7/2020 |
2.3.0 | 1,123 | 12/2/2019 |
2.2.0 | 984 | 11/12/2019 |
2.1.7 | 517 | 11/5/2019 |
2.1.6 | 520 | 10/8/2019 |
2.1.5 | 516 | 9/16/2019 |
2.1.4 | 513 | 8/13/2019 |
2.1.3 | 1,443 | 6/5/2019 |
2.1.2 | 596 | 5/28/2019 |
2.1.1 | 1,996 | 4/2/2019 |
2.1.0 | 1,164 | 4/2/2019 |
2.0.6 | 750 | 4/1/2019 |
2.0.5 | 1,169 | 3/27/2019 |
2.0.4 | 998 | 3/6/2019 |
2.0.0 | 1,089 | 2/20/2019 |
2.0.0-pre29 | 548 | 2/19/2019 |
2.0.0-pre26 | 518 | 2/14/2019 |
2.0.0-pre23 | 513 | 2/12/2019 |
2.0.0-pre15 | 524 | 2/6/2019 |
2.0.0-pre11 | 569 | 2/4/2019 |
2.0.0-pre09 | 528 | 1/25/2019 |
2.0.0-pre02 | 586 | 1/16/2019 |
2.0.0-pre01 | 607 | 12/5/2018 |
1.4.9 | 637 | 2/8/2019 |
1.4.8 | 768 | 12/6/2018 |
1.4.7 | 1,193 | 11/28/2018 |
1.4.5 | 765 | 11/21/2018 |
1.4.4 | 713 | 11/20/2018 |
1.4.3 | 1,183 | 11/6/2018 |
1.4.1 | 723 | 10/30/2018 |
1.4.0 | 734 | 10/22/2018 |
1.3.11 | 723 | 10/16/2018 |
1.3.5 | 764 | 10/15/2018 |
1.3.4 | 811 | 10/8/2018 |
1.3.3 | 818 | 10/2/2018 |
1.3.2 | 831 | 9/11/2018 |
1.3.1 | 911 | 8/23/2018 |
1.3.0 | 1,332 | 8/23/2018 |
1.2.0 | 888 | 8/20/2018 |
1.1.5 | 869 | 8/15/2018 |
1.0.4 | 1,037 | 8/14/2018 |
1.0.3 | 850 | 8/13/2018 |
1.0.2 | 846 | 8/13/2018 |
1.0.1 | 1,124 | 8/10/2018 |
1.0.0-pre005 | 809 | 7/3/2018 |
1.0.0-pre001 | 1,068 | 6/11/2018 |
1.3: Added fluent configuration of edge references
1.3: Added basic Edge properties support
1.4: Performance improvements