Soriento icon indicating copy to clipboard operation
Soriento copied to clipboard

Scala OrientDb object mapping library

Results 8 Soriento issues
Sort by recently updated
recently updated
newest added

If I create OClasses with recursive dependencies I have error: Example User(@LinkSet subscriptions: Set[Place]) and Place(@LinkSet subscribers: Set[User]) java.lang.StackOverflowError at java.lang.StringCoding$StringDecoder.decode(StringCoding.java:153) at java.lang.StringCoding.decode(StringCoding.java:193) at java.lang.String.(String.java:426) at com.orientechnologies.orient.core.serialization.serializer.record.binary.ORecordSerializerBinaryV0.stringFromBytes(ORecordSerializerBinaryV0.java:815) at com.orientechnologies.orient.core.serialization.serializer.record.binary.ORecordSerializerBinaryV0.readString(ORecordSerializerBinaryV0.java:772) at...

bug

`db.asyncQueryBySql[String]("select name from User")` is not working. scala.ScalaReflectionException: constructor String encapsulates multiple overloaded alternatives and cannot be treated as a method. Consider invoking `.asTerm.alternatives` and manually picking the required method...

bug

If you have very many classes to be marshalled into ODB it would be useful to automatically detect them with a package scanner and to automate calling OCreate and typereaderregistry....

Hello Any plan of releasing a version of Soriento in maven central repository or any other maven repo? We would like to integrate this library in our code using maven...

``` def productToDocument(cc:Product) ... val values = cc.productIterator val fieldList = cc.getClass.getDeclaredFields.toList ... val purifiedFromId = values.zip(fieldList.iterator).toList.filter { case (v, f) => !isId(f.getName, cc.getClass) } ``` values and fieldList are...

In the documentation on the main page: ``` case class BlogWithEmbeddedMessages(author: String, @EmbeddedSet messages: List[Message]) val blogWithEmbeddedMessages = BlogWithEmbeddedMessages("John", List(...) ``` @EmbeddedSet need to be consistent with the messages type...