Hi,
Good to know at least someone tries to build an up to date arango C# client - keep up the good work.
I tried to replace the arangoclient.net with your version in our project, however that journey ended quickly while missing the following features.
- Mark and translate _key, _id, ... properties in Domain Model with Attributes/Fluent (that dictionary solution is no good to us - see [DocumentProperty] in arangoclient)
- Insert many edges? Or insert many documents with translated _from and _to Attributes. (There I could live with the dictionary solution)
- Create Graph API (not that important)
I'd like to help out however, time is rather limited at the moment.
EDIT: Since you now use newtonsoft in theory I could achieve the desired result with [JsonProperty("name")], however then I could never directly expose my domain models to the ASP.NET CORE controller.
Hi,
Good to know at least someone tries to build an up to date arango C# client - keep up the good work.
I tried to replace the arangoclient.net with your version in our project, however that journey ended quickly while missing the following features.
I'd like to help out however, time is rather limited at the moment.
EDIT: Since you now use newtonsoft in theory I could achieve the desired result with [JsonProperty("name")], however then I could never directly expose my domain models to the ASP.NET CORE controller.