Convert from Realm Results to Array produce empty objects
When I try to convert from Results to Swift Array the properties are on the default values. So let's say I write a Request object like this: let realm = try! Realm() try! realm.write { realm.add(request, update: true) } Then when I'm reading them from Realm like this: let realm = try! Realm() let requestsFromRealm = realm.objects(Request.self) I got the results just fine. I need to convert the Results object to Array. I did it: let requests = Array(requestsFromRealm) The requests objects are there, but the properties are on the default values. The weird thing is, when I check the values on the