Changed
getMap()
is no longer abstract and returns an empty array by default, so it is no longer necessary to implement for read-only APIs.- If the ID column is returned from
getMap()
, it is now automatically writable without having to set awritableId
flag. getSelectMap()
now returns an empty array by default (rather than thegetMap()
value), so it is no longer necessary to implement this method just to prevent selecting write-only properties when usinggetSelectProps()
.
Important
When upgrading, remove readonly ID properties from getMap()
, and implement getSelectMap()
if any writable property is not returned by getSelectProps()
.
Removed
- Unnecessary
getDefaultValues()
method. Defaults can be set viaprocessValues()
instead. writableId
bool property.