CoreStore
CoreStore copied to clipboard
Unleashing the real power of Core Data with the elegance and safety of Swift
Considering the introduction of `identifiable` is swift one can imagine an extension for `ImportableUniqueObject` leveraging situations where `ImportSource is Identifiable`, using `ImportSource.ID` in relation to `UniqueIDType`, `uniqueIDKeyPath` and `uniqueIDValue` I've...
Hello, forgive me if I missed it in documentation, but how would I set up a `NSPersistentStoreDescription` to set up options like `NSPersistentHistoryTrackingKey` and `NSPersistentStoreRemoteChangeNotificationPostOptionKey`?
- if `YES`, post a `+1` or 👍 - if `NO`, post a `-1` or 👎 If you answered `YES`, please do share a short comment on particular use-cases you...
I make variable ```swift let fetchingItems = [ { (newDate) -> [DataType] in return try! UserDataManager.dataStack.fetchAll(From(UserDataManager.veggieConfiguration) .where(format: "%K BEGINSWITH[c] %@",#keyPath(DataType.createdDate),newDate).orderBy(.descending(\.createdDate))) }, { (newDate) -> [DataType] in return try! UserDataManager.dataStack.fetchAll(From(UserDataManager.fruitsConfiguration) .where(format:...
I'm experiencing a crash when accessing a required string property from an entity. I haven't seen anything posted about it, so I'm guessing it could be an implementation issue but...
Hi. Just wondering if there is any plans to add support for CloudKit? Thank you.
My restaurant table structure is as follows: **MenuCategory** _restaurant_id category_id category_name items sub_categories_ Either items or sub_categories will be present in the above table. **MenuSubCategory** _ranking sub_category_id sub_caterory_name_ **MenuItem** _item_id...
Hello I need to migrate the code like one below to CoreStore ``` let dupeFetch: NSFetchRequest = StopEntity.fetchRequest() let nameExpr = NSExpression(forKeyPath: "name") let countExpr = NSExpressionDescription() let countVariableExpr =...
Would it be possible to make `CoreStoreObject` to implement `CustomStringConvertible` by default? It would be nice if `print(myCoreStoreObject)` printed all keys and their values out of the box. I use...