CoreStore
CoreStore copied to clipboard
Unleashing the real power of Core Data with the elegance and safety of Swift
Hey! I'm trying to create a sample app with the library and the aim is to have a read only store that's supplied with the app bundle and a read-write...
Hi, I'm building an app that is very db heavy. I've noticed my inserts using dataStack.perform(asynchronous(()) are slow. I was able to have double the insert performance by changing DataStack...
hi @JohnEstropia, i have some problem about corestore observer, can you help me? this my method when fetch data from server and save it into database ```swift try! Omni.dataStack.perform(synchronous: {...
I'm a little confused as to how to use this lib in a ViewModel SwiftUI context. I'd rather not have the View have a dependency on the CoreStore lib. ```swift...
Hi! There is a problem with `.where` expressions in case you are trying to filter *toMany* `Relationship` properties. In my code example I want to fetch all `Master`'s which contains...
In our app all of our writes basically look like this: ``` dataStack.perform(asynchronous: { (transaction) -> Void in // Create, update or delete on transaction try transaction.create(Into()) / deleteAll(From(.where(...))) },...
Here is an example of how I would think to set this up. ``` class User: CoreStoreObject { @Field.Stored("username") var username: String = "" @Field.Relationship("postLikes", inverse: \.$user) var postLikes: [PostLike]...
I have two web fetches that update the same object at different times. Hotel