A report can be bound to a business object registered from code before it is shown or designed.

Register the object.
Report = new StiReport();
Report.Load(await Http.GetByteArrayAsync("Reports/BusinessObjects.mrt"));

var list = GetBusinessObject();
Report.RegBusinessObject("MyList", list);
Report.Dictionary.Synchronize();

How it works. The report renders directly from the registered object, so your domain classes drive the output with no dataset conversion.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.