We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4703402 commit 74bfa26Copy full SHA for 74bfa26
Sources/ManagedModels/Container/ModelConfiguration.swift
@@ -1,6 +1,6 @@
1
//
2
// Created by Helge Heß.
3
-// Copyright © 2023 ZeeZide GmbH.
+// Copyright © 2023-2024 ZeeZide GmbH.
4
5
6
@preconcurrency import CoreData
@@ -141,6 +141,10 @@ public extension ModelConfiguration {
141
cloudKitDatabase: cloudKitDatabase)
142
}
143
144
+ @inlinable
145
+ init(isStoredInMemoryOnly: Bool) {
146
+ self.init(schema: nil, isStoredInMemoryOnly: isStoredInMemoryOnly)
147
+ }
148
@inlinable
149
init(for forTypes: any PersistentModel.Type...,
150
isStoredInMemoryOnly: Bool = false)
0 commit comments