Core Data中使用NSPredicate
NSFetchRequest有一个predicate属性,它可以指定管理对象应该被获取的逻辑条件。谓词的使用规则在这里同样适用,唯一的区别在于,在管理对象环境中,谓词由持久化存储助理(persistent store coordinator)评估,而不像集合那样在内存中被过滤。
NSFetchRequest从持久存储中检索数据。
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"IndustryEntity"];
一个Department对象,它和Employee对象是一对多的关系。(比如一个部门有100个员工)
当你加载Department的时候,它包含的所有Employee也被加载了,此时如果returnsObjectsAsFaults为YES,则员工们不会被添加到内存中,而是被放在了row cache里,Department对象里的员工们只是一个指针(也称之为fault managed object---假冒指针),只有当你真正要用到Department里的员工数据的时候,Core Data才会再次从row cache中读取出来。
如果你确定你会访问通过NSFetchRequest返回的对象的属性,此时设置returnsObjectsAsFaults为NO会是更好的选择。
在将用户数据存储到外部文件前,我们需要考虑以什么样的格式进行存储,所以需要先进行数据表的设计 —— 设计好的数据模型会以Managed Object Model的形式存在于内存中
采用面向对象的思想进行表的设计时,每一张表描述着一种实体(NSEntityDescription)
一份NSManagedObjectModel则包含着多种NSEntityDescription---Player、Team
每一份NSEntityDescription有三种属性,分别是Attributes、Relationships和Fetched Properties。
根据NSEntityDescription创建出来的对象比较特殊,我们称之为NSManagedObject
由于它的特殊性,当我们要创建一个NSManagedObject对象时,比如Player实例,我们需要为其提供一个生存环境,称之为NSManagedObjectContext。
NSManagedObjectContext记录着存在于其中的NSManagedObject的生命周期、变化状态等。
一份NSManagedObjectContext实例作为NSManagedObject在内存中的缓存地带,我们可以从外部存储文件中读取或者临时创建一批NSManagedObject对象到其中,然后在context中做CURD操作。不论是从本地读取数据,或者是将数据存储到本地文件中,都需要经过context的把关。
当我们要将内存中的数据根据NSManagedObjectModel进行持久化时,我们需要一个新的角色来做中间层:NSPersistentStoreCoordinator类。
它位于context和存储文件之间,与NSManagedObjectModel结合,来为context服务,负责将context中的对象信息存储下来,或者将存储文件中的数据读取到context中。
存储文件NSPersistentStore,可以是SQLite、二进制或者XML文件格式等。
1----NSManagedObjectContext数据管理器(被管理对象上下文)
————1----self. managedObjectContext
_managedObjectContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];
_managedObjectContext.parentContext = self.privateWriteContext;
parentContext
_privateWriteContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType];
[_privateWriteContext setPersistentStoreCoordinator:self.persistentStoreCoordinator];
----------2——self.temporaryContext
_temporaryContext = [[NSManagedObjectContext alloc] initWithConcurrencyType: NSPrivateQueueConcurrencyType];
_temporaryContext.parentContext = self.managedObjectContext;
2-----NSPersistentStoreCoordinator数据连接器
_persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: [self managedObjectModel]];
NSDictionary *options = nil;
options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];
NSString *storePath = [[self applicationDocumentsDirectory] stringByAppendingPathComponent:@"QiNiuCoreData.sqlite"];
NSURL *storeUrl = [NSURL fileURLWithPath:storePath];
[_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeUrl options:options error:&error];
3----NSManagedObjectModel数据管理模型
NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"QiNiuCoreData" withExtension:@"momd"];
_managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
[self.managedObjectModel setEntities:[NSArray arrayWithObject:runEntity]];
Managed Object Context
|
Persistent Store Coordinator —— Managed Object Model
|
Persistent Object Store
1.初始化NSManagedObjectModel对象,加载模型文件,读取app中的所有实体信息2.初始化NSPersistentStoreCoordinator对象,添加持久化库(这里采取SQLite数据库)3.初始化NSManagedObjectContext对象,拿到这个上下文对象操作实体,进行CRUD操作
NSEntityDescription
insertNewObjectForEntityForName
通过Core Data从数据库取出的对象,默认情况下都是NSManagedObject对象
NSManagedObject的工作模式有点类似于NSDictionary对象,通过键-值对来存取所有的实体属性
--------- (void)insertObject:(NSManagedObject *)object;
- (void)deleteObject:(NSManagedObject *)object;
NSEntityDescription object describes an entity in Core Data.
[NSEntityDescription insertNewObjectForEntityForName:@"Image" inManagedObjectContext:recipe.managedObjectContext]
specifies an entity’s name, its properties 、the class by which it is represented.
为什么会使用core data?
提供通用自动的解决办法给普通的任务,与生命周期有关的对象和图像管理对象
provides generalized and automated solutions to common tasks associated with object life cycle and object graph management, including persistence.
维护对象之间的一致性关系
可选的集成与应用程序的控制器层支持用户界面同步。
支持自动将对象存储在外部数据存储库。
复杂的查询编译。
核心数据的功能取决于您创建的模式来描述应用程序的实体、属性和它们之间的关系。核心数据使用一个模式称为管理对象模型——NSManagedObjectModel的实例
schema 模式
The model is a collection of entity description objects -----NSEntityDescription