Make a report by feeding sql query to it in mvc approach
DbContext class is the one among others that the Entity Framework team has created, in order to facilitate developers when accessing and manipulating database data. I used code first apprach in a mvc project. I want to make a report using fast report which a query sql feed to it.
How can I make the report?
Is there a full project that sql query not xml feed to it?
How can I make the report?
Is there a full project that sql query not xml feed to it?
Comments
List<Model> bo = ...dbContext.ToList();
webreport.RegisterData(bo , "MainReport");
I prefer to have a sample project.