Reading List
Entity Inheritance Slowdowns from Michael Tsai RSS feed.
Entity Inheritance Slowdowns
Fatbobman: Core Data/SwiftData does not create separate tables for each subclass. Instead, it merges data from the parent entity and all its child entities into a single table (usually named after the parent entity). […] The Wide Table Problem: If there are many types of child entities with distinct attributes, this table will end up […]