Orientcase中的通用类的用例

时间:2017-07-15 03:31:26

标签: orientdb

generic班级与vertexedge班级之间的区别是什么?你为什么要用一个呢?

1 个答案:

答案 0 :(得分:1)

OrientDB是一个多模型数据库。 数据建模在文档中引入:

http://orientdb.com/docs/last/Tutorial-Document-and-graph-model.html

在基地,有文件模型,有继承。顶点和边(V,E)是图模型使用的专用子类。 同样,用户可以定义他的类层次结构(在OrientDB术语中,类是一个表)。

一个具体的例子。 将Person类定义为顶点,然后定义两个子类Employee和Customer。所以员工和客户都是人,也是顶点。

这是一个很好的例子:http://orientdb.com/docs/last/Tutorial-Using-schema-with-graphs.html

我希望这可以提供帮助