Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
<StiBlazorDesigner Report="@Report" OnSaveReport="@OnSaveReport" />
@code {
protected override void OnInitialized()
{
this.Report = new StiReport();
this.Report.Load("Reports/BusinessObjects.mrt");
var list = GetBusinessObject();
this.Report.RegBusinessObject("MyList", list);
this.Report.Dictionary.Synchronize();
}
}RegBusinessObject registers your object collection under a name, and Dictionary.Synchronize() creates the matching data fields. The report then works with your domain classes directly, both in the designer and when rendered.