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.
IEnumerable or ITypedList collection — without converting them to datasets first.var report = new StiReport();
report.RegData("EmployeeIEnumerable", CreateBusinessObjectsIEnumerable.GetEmployees());
report.Load("BusinessObjects_IEnumerable.mrt");
report.Show();RegData(name, object) — exposes a business-object collection to the report under the given data-source name.ITypedList source additionally advertises its columns, so the dictionary can be built without reflection.IEnumerable and ITypedList only changes how column metadata is discovered.