Turning a new instance of a business object into a formgroup

if you do something like:

this.place = await Place.create({ name: 'deleteme' });

and you want to use this on a page, so you want it to be a formgroup.
How can you turn that business object instance to a formgroup?

Use “PlaceFormGroup” instead of “Place”.