"I believe that they should be something in the lines of the wizard, allowing you to drag and drop fields from your tables into the form and generate logic ..." is the main idea of ASP.NET WebForms. But please do not leave MVC in favor of WebForms.
One way to achieve what you want is to create a class that represents your statistics, for example.
public class Statistic { public string TableName { get; set; } public int RowCount { get; set; } }
The model code can populate an instance of IList<Statistic> , which is passed to your view, which accordingly displays statistics.
Adam ralph
source share