OrientDB-NET.binary
OrientDB-NET.binary copied to clipboard
C#/.NET binary driver for OrientDB
I would like to see you support LINQ the standard way in C# to work with data: Linq2Objects for data in memory and Linq2SQL through different ORMs. So different sources...
As reported also by other users, there's a problem inserting records with IEnumerable and IDictionary embedded properties, for example a List or a Dictionary. This is the test case: [Test]...
That might be a corner case, but i found another issue when importing data from an existing mongodb source: trying to insert an array property with a single null value...
Inserting a record with a string array with null values throws a NullReferenceException. TestProfileClass: public class TestProfileClass : OBaseRecord { public string Name { get; set; } public string Surname...
Inserting string values with backslash (\) throws an exception. This test fails: [Test] public void ShouldInsertValuesWithBackslash() { _database .Create.Class("TestClass") .Run(); ``` ODocument document = new ODocument(); document.OClassName = "TestClass"; document...
Inserting string values with newlines (\n) and carriage returns (\r) throws an exception. This test fails: [Test] public void ShouldInsertValuesWithNewLines() { _database .Create.Class("TestClass") .Run(); ``` ODocument document = new ODocument();...
is there a plan to support this thanks
Was trying to create class with list or enumerable property and are getting this error. You can easily replicate it by modifying the test case like that. ``` public class...
The setter should be removed in ORID.RID. This means that a RID cannot be overwritten. Id's should be immutable and never modifiable. It also makes RID consistent as there is...
Hello ! This small test is failing. The string 'e=mc2' become \'e:mc2\' if stored in a member of an inner document ``` public void InsertColonAndEqualSymbolInInnerDocument() { Utils.InitPool(); using (ODatabase database...