Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
721 views
in Technique[技术] by (71.8m points)

iphone - iOS - Core Data set attribute primary key

I am developing an application in Swift and started using Core Data recently. I must define which attribute to my entity will be my primary key. For example:

I have an entity that has the attributes of the class:

  • id
  • name
  • age

I need the "id" attribute is my primary key.

May be the same in Objective-C, just need to know how to define it.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Each NSManagedObject has its own unique key built in which is available in its objectID property.

This id is internally used to link entities over its relations. There is no need to maintain an own id as a primary key as you are used to do in SQL.

You can always get the id by NSManagedObject.objectID.

Fetching an object by its id can be performed directly by the managed object context using NSMananagedObjectContext.objectWithId(...)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...