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
Until embedded entities are supported, can anyone share their workaround for an entity with a nested class? I've seen TypeConverters being mentioned in some discussions but I can't seem to figure out how to use it in this case.
class Order{
String id;
int total;
List<Item> items;
}
class Item{
String itemId;
String itemDescription;
int quantity
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Until embedded entities are supported, can anyone share their workaround for an entity with a nested class? I've seen TypeConverters being mentioned in some discussions but I can't seem to figure out how to use it in this case.
I tried using this TypeConverter
but I am still getting this error: Column type is not supported for
List<Item>
Beta Was this translation helpful? Give feedback.
All reactions