I'am creating a NSPersistentContainer to save some data, but even though calling save() on the context doesnt create any database file.
The code I'm using for creating the NSPersistentContainer is:
let container = NSPersistentContainer(name: "Model")
let description = NSPersistentStoreDescription()
description.shouldInferMappingModelAutomatically = true
description.shouldMigrateStoreAutomatically = true
container.persistentStoreDescriptions = [description]
container.loadPersistentStores { ... }