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.
var query = from i in items
where i.Price > 9.99
orderby i.Price
select i;
var report = new StiReport();
report.Load("Reports/Report.mrt");
report.RegBusinessObject("MyData", "MyData", query);RegBusinessObject(category, name, data) — registers an in-memory object sequence (here the query result) as a data source.IEnumerable LINQ result — projections, joins, groupings — becomes a data source, letting you pre-shape data with the full power of LINQ.