using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Threading.Tasks; using FastReport; using FastReport.Web; namespace BlazorApp.Pages.Reporting { public partial class Reporting { readonly string directory; const string DEFAULT_REPORT = "userliste.frx"; string userid = ""; //Report Report { get; set; } //DataSet DataSet { get; } = new DataSet(); protected override void OnParametersSet() { base.OnParametersSet(); } public Reporting() { BlazorApp.Helper.dbhelper dbh = new Helper.dbhelper(); DataSet.Tables.Add(dbh.Get_Tabledata("Select * from AspNetUsers", false, true).Copy()); DataSet.Tables[0].TableName = "Daten"; } } }