In my Core Data database, all my entities inherit from a parent entity.
For this reason, I've just realized that, under the wood, all entries are added to 1 table (a table for all entities), rather than multiple tables (a table for each entity) in SQLite.
I'm wondering if this terribly affect performances, since all my data is inserted in 1 table.
thanks