Patient entity that can have a dynamic amount of phone numbers by making its propertypublic List<PhoneNumber> PhoneNumbers { get; set; } = new();[ColumnType("jsonb")] has been deprecated in favor of using .ToJson(), which I'm now trying to apply since I just upgraded from net7 and Npgsql 7 to 8. I'm setting up EnableDynamicJson() in my DbContext as follows:PatientConfiguration as follows:{"Capacity": 4}Entity 'PhoneNumber' is mapped to JSON and also to a table or view 'phone_number', but its owner 'Patient' is mapped to a different table or view 'patients'. Every entity mapped to JSON must also map to the same table or view as its owner.