iOS Swift - Local Data Persistence
Given this SwiftData setup code snippet, what will be the output when fetching all Person objects?
let container = ModelContainer(for: Person.self) let context = container.mainContext let people = try? context.fetch(FetchDescriptor<Person>()) print(people?.count ?? 0)
