Working on a sample app. The goal is to have a list pulled up from CoreData in a Master, and then click on one to go to a detail, where you can edit the information and sav
As @trapper explained, the entityName has to be bound the the MasterView.
entityName
MasterView
Updates are reflected when you add @ObservedObject in the DetailView as follows:
@ObservedObject
DetailView
@ObservedObject var entityName:EntityName