ArtistsSqlModel *artistsSqlModel = new ArtistsSqlModel( qApp);
QQmlApplicationEngine engine;
engine.rootContext()->setContextProperty("artistsModel", artistsSqlModel);
Rectangle {
width: 300;
height: 200;
property alias nameTextTop: nameText // This alias is defined at top level and bound to Text element
Text {
id: nameText;
color: "blue";
text: "Some text fragment";
}
}