OrientDB-NET.binary
OrientDB-NET.binary copied to clipboard
C#/.NET binary driver for OrientDB
When querying a vertex using database.Select or database.Query, the resulting ODocument does not contains any in or out edges if the vertex has many edges. (1000+)
When performing a traverse query using ```database.Query('traverse outE(), inV() from (SELECT FROM Object ORDER BY name SKIP 0 LIMIT 5000))``` If any of the node contains lots of edges, below...
Is there anyway to set the timeout of an insert, update, or select statement other than running the query with ... TIMEOUT 30000 EXCEPTION on the end? It seems like...
In the `Close()` method of the `ODatabase` class it does a check for `_containsConnection`, but that instance variable is never set to true so the connection is never closed. Adding...
Hi I'm trying to save text that contains items such as emoji's, e.g. 👉. I can save the same text directly in the management UI. So I don't think that...
Fixed a bug in looking up existing classes by their default cluster name. Normalized the line endings in one of the config files.
It was really took me a long time to feature out lib doesn't support System.UInt32, because of line 164 of \src\OrientDB-Net.binary.Innov8tive\Protocol\Serializers\RecordCSVSerializer.cs `throw new NotImplementedException();` It might be better to indicate...
Have found an issue with trying to provide an already existing class into a database. To be clear a simple check can be done as in the following: ```c# ODatabase...
## Introduction I was working with injecting properties into a class' schema, but then when a property name wasn't in the proper format it would only add a subset of...
To use a space, a dash, a question mark [or even "batch"](https://github.com/orientechnologies/orientdb/issues/7001) in a property name, it needs to be backticked. This works great with myDB.Create.Property, but SetField keeps the...