This commit is contained in:
John Estropia
2026-07-15 11:50:43 +09:00
parent 7db1cfecfb
commit 890e150b95
135 changed files with 2895 additions and 2526 deletions
+2 -1
View File
@@ -35,7 +35,7 @@ import Foundation
- `UnsafeDataModelSchema`: describes models loaded directly from an existing `NSManagedObjectModel`. It is not advisable to continue using this model as its metadata are not available to CoreStore.
- `CoreStoreSchema`: describes models written for `CoreStoreObject` Swift class declarations.
*/
public protocol DynamicSchema {
public protocol DynamicSchema: Sendable {
/**
The version string for this model schema.
@@ -45,5 +45,6 @@ public protocol DynamicSchema {
/**
Do not call this directly. The `NSManagedObjectModel` for this schema may be created lazily and using this method directly may affect the integrity of the model.
*/
@_spi(Internals)
func rawModel() -> NSManagedObjectModel
}