Yes you can have multiple inheritance in the newer versions. 

create class C extends A, B;

alter class C superclasses A, B;

--Add A superclass
alter class C superclass +A;  

--Remove B superclass 
alter class C superclass -B;   

Follow the link for more details.
https://github.com/orientechnologies/orientdb/pull/3802


On Monday, June 1, 2015 at 2:45:17 PM UTC-7, Zhuo Bao wrote:
>
> when creating complicated objects (class), a logically plausible method is 
> to create them from multiple classes:
> an event class is composed by:
> 1, datetime class
> 2, geolocation class
> 3, weather class
> 4, people class
> ....
>
> could this be possible in orientdb?
>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to orient-database+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to