You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Whenever you must change some Object-Reference to a Lazy-Reference it is quite difficult, because it is a big change
from a Class-Structure kind of perspective. But exactly this case should be automatically mapped because this can happen quite often, when you are optimizing your application for performance.
Example:
Change a record Root from this:
publicrecordRoot(List<Object> myObjects){}
to this:
publicrecordRoot(List<Lazy<Object>> myObjects){}
Describe the solution you'd like
The described case should be covered by the Automatic Mapping.
The other way around should work too: From Lazy<Object> to Object.
Describe alternatives you've considered
Right now you must dive into the LegacyTypeMapping with CSV-Files or similar constructs for this specific change.
The text was updated successfully, but these errors were encountered:
(Migrated from microstream-one/microstream#589)
Is your feature request related to a problem? Please describe.
Whenever you must change some Object-Reference to a Lazy-Reference it is quite difficult, because it is a big change
from a Class-Structure kind of perspective. But exactly this case should be automatically mapped because this can happen quite often, when you are optimizing your application for performance.
Example:
Change a record Root from this:
to this:
Describe the solution you'd like
The described case should be covered by the Automatic Mapping.
The other way around should work too: From
Lazy<Object>
toObject
.Describe alternatives you've considered
Right now you must dive into the LegacyTypeMapping with CSV-Files or similar constructs for this specific change.
The text was updated successfully, but these errors were encountered: