CoreStore
CoreStore copied to clipboard
Unleashing the real power of Core Data with the elegance and safety of Swift
Not sure if this is just a bug with the beta but the source no longer builds in this version of Xcode. Any ideas @JohnEstropia ?
at version 6.x.x delete CloudKit features , why ? and is there any plans to support it in future version , such as version 9.x.x ?
Hello, and thanks for the great library I would like to create a function to avoid duplicate code in sort selection (having a table view with 4 different sort asc/desc...
I have an app which stores an entity `class EntityA: NSManagedObject {...}` I have the following simplified CoreData code to fetch this entity ``` let container = NSPersistentContainer(name: "Model") let...
We are using CoreStore and while we love it, there is one thing that is causing us a bit of trouble. When wanting to clear the whole database, we need...
Below is the piece of code I'm using to store the products details, I will be getting huge data which has more than 7000 products. 1. print("CoreStore Called") is logged...
Getting compile errors in xcode 13, Internals.DiffableDataUIDispatcher.DiffResult.swift: 'let' property 'pointer' may not be initialized directly; use "self.init(...)" or "self = ..." instead Initializer for class 'Internals.DiffableDataUIDispatcher.DiffResult.IndicesReference' is '@inlinable' and must...
Apple added NSPersistentContainer which makes setup of CoreData much easier, same as part of CoreStore does. CoreStore is really cool CD wrapper, I would love to use it in my...
After using `transaction.deleteAll` inside `asynchronous` I don't get any `ListObjectObserver` events anymore. So in the following code snippet after fetching any new page from API I add new items to...
I made a FieldCoderType because I want to save an array of NSCoding. Is the following implementation safe? I want to receive feedbacks about this. (I'm a beginner for CoreData.)...