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?
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”.