Entity Inspector provides auto-generated UI

Is there a way to get the auto-generated UI created when using the Entity Inspector?

In the pets clinic demo if you go to use the entity inspector on the owner entity. Owner has many pets.

The generated UI is almost exactly what I want to use in my app. Is there a way to capture the ui and use it in my app? Or if not is there an easy way to recreate it in studio?
jmixenity

Hi,

When generating a DetailView for an entity that has a composition attribute and this attribute is included into FetchPlan, the resulting view will contain a nested collection container for the composition, as well as a DataGrid to manipulate the composition entities.

Something similar you can find in the Bookstore demo, in the OrderDetailView.

Regards,
Gleb

Exactly what I need. Thanks.