GithubHelp home page GithubHelp logo

grom's Issues

Add deploy docs task to release pipeline

It would be nice if the deployment of grom could also deploy the new docs with the 'mkdocs gh-deploy' command in the pipeline

  • create a new task in the release pipeline that runs the 'mkdocs gh-deploy' command
  • make sure it can only run when the release to nuget succeeds

Add check to prevent node property from being named reserved names

Some databases might not allow properties to have certain names this task is to make sure no property with the attribute NodeProperty can not have those names.

Not sure what the best way to do this is. This is something that only needs to be done once per class. Unfortunately I'm not aware of ways to do this.

  • Add check when inserting into database?
  • Add check when creating an instance?

Try using Neo4J driver mapper

Currently Neo4J results are mapped to an object with a custom mapper that we implemented, Use the Neo4J driver extension As to map objects.

Use custom identifier for each node

Currently node.id in Neo4J is used to identify nodes but this is not a general solution for other graph dbs. Instead a GUID can be used and added as a property to the node.

Custom node name in the database with attribute for class

Allow users to define a custom node name for a class that inherits from EntityNode with an attribute.
Could look something like this:

[Node(Name: "PersonNode")]
public class Person : EntityNode
{
    [NodeProperty]
    public string Name { get; set; }

    [NodeProperty]
    public int Age { get; set; }
}

Support constraints on properties

We could implement it with an expression that can be added as a parameter in an attribute

[NodeProperty(constraint = (p => p.Count < 10))]
string someProp {get; set;}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.