On Jun 21, 2009, at 14:22:00, mmalc Crawford wrote:


On Jun 21, 2009, at 2:04 PM, Kyle Sluder wrote:

Is it possible (or does Core Data automatically do this) for attributes that aren't accessed to not actually load? For example, my entities have a "description" attributes that is rarely accessed. Will Core Data defer
loading the data for that attribute until it's actually requested?

No. The behavior you're describing is known as "faulting." Core Data
only faults objects, not attributes.

This is not the case with iPhone OS -- see NSFetchRequest's setPropertiesToFetch:

<http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/CoreDataFramework/Classes/NSFetchRequest_Class/NSFetchRequest.html#//apple_ref/occ/instm/NSFetchRequest/setPropertiesToFetch: >

You can specify a subset of properties to fetch in the initial request. If you request others at a later stage, the remainder of the object's data will be faulted in.

That is exactly what I'm looking for, thanks!

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to