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
I would like to store this using Storm. This is currently not possible as far as I know. I'm also not fully sure how this should be implemented. If I convert to JSON using Jackson, it looks like this:
I'm currently in the planning phase for a new library, not suitable as a drop-in replacement for Storm but one to serve more than a minimal viable product and be less opinionated.
Key changes include proper schema, relations, and api's to extend base functionality.
SQL itself doesn't really have support for polymorphism due to its strictness on data types (by design), though there are popular methods to handle this (like the supertype model), which is one that we're considering.
I'll update this issue with a link to the project once it goes public (shouldn't be too long)
I want to use storm with a Polymorphic class design. I have a Vehicle class which contains a
List<Part>
with different types of parts.I have the following class design:
I would like to store this using Storm. This is currently not possible as far as I know. I'm also not fully sure how this should be implemented. If I convert to JSON using Jackson, it looks like this:
Please note the type parameter, which is used to determine the class to convert to.
Do you have any idea on the best way to implement this into Storm? I think it can be useful in various situations.
The text was updated successfully, but these errors were encountered: