yojimbo87 / OrientDB-NET.binary

C#/.NET binary driver for OrientDB
MIT License
21 stars 19 forks source link

NuGet #39

Open PascalZwiers opened 10 years ago

PascalZwiers commented 10 years ago

Hey there,

i got your Package over "NuGet" (Version 0.2.1) and got there the following Situation but not in the current GitHub-Version (0.2.1):

when i create three vertex and connect (create two edges) the first one with the other verticies and run the following command "select from #9:0" then i got an InvalidFormatException.

For Instance: Create Vertex; (#9:0) Create Vertex; (#9:1) Create Vertex; (#9:2) Create Edge from #9:0 to #9:1; Create Edge from #9:0 to #9:2;

C# Command: database.Query("select from #9:0");

Now i got the InvalidFormatException if i run the Command in the OrientDB Studio everything works fine. The the interesting point is, that the exception is only throw, when i created the second Edge, if only one edge is connecting the two verticies, then the command succeeded.

When i build your packacke from GitHub and include it in my Sourcecode, the Command works.