ManagedModels icon indicating copy to clipboard operation
ManagedModels copied to clipboard

A SwiftData like `@Model` infrastructure for CoreData.

Results 17 ManagedModels issues
Sort by recently updated
recently updated
newest added

Probably easy? Not sure how important that is. The entity builder would "just" have to generate the parent entity and hook that up?

enhancement
help wanted

Building upon Issue #7, an actual DocC tutorial would be nice.

documentation
good first issue
help wanted

Regular CoreData migration should work just fine, but it would be nice to have support for the SwiftData style setup. The types are already in place, but the functionality would...

enhancement
help wanted

If the dev didn't specify an own initialiser, the macro should generate one, similar to what Swift itself already does for structures. E.g.: ```swift @Model class Item: NSManagedObject { var...

enhancement
help wanted

This doesn't seem too hard, setup a watcher for scene notifications and trigger a save if the autosave property is set.

enhancement
help wanted

`NSManagedObject` itself provides a `fetchRequest` method, but that is type erased. So we should generate a fetchRequest method that overloads with the actual model type. I think I might have...

enhancement
help wanted

Follow up to #22 by @HealsCodes: I've been playing around with Predicates + ManagedModels but always run into a dead-end seemingly because Model properties aren't [exposed to the underlying Objective-C...

bug