Is it possible to store generated EMF model directly to CDO? -


from document have followed, understood every element in emf model extend cdoobject. mandatory extend cdoobject? if yes, have emf model developed other team , don't have permission extend model class cdoobject. there alternative solution in such case??

using pure emf-models cdo possible using cdo legacy mode. while supports models not ported cdo has performance implications.

you can activate legacy mode this:

cdoutil.setlegacymodedefault(true); cdotransaction transaction2 = session.opentransaction();    

more information can found here: https://wiki.eclipse.org/cdo/legacy_mode


Comments