Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个名为“车库”的实体和一个名为“汽车”的实体。
在 SQL 中,我可能会创建第三个表(有时称为粘合表),它只有两个字段“GarageID”“CarID”
这样我就可以将某些汽车与某些车库联系起来。
Core Data 建模器将如何处理这个问题?
谢谢!
你说的是多对多关系。CoreData 支持这样的模型。只需在两个实体中创建相互设置为“对多”的关系。就这样。