Category - Entity Framework
Results 61 - 80 of 420
30 Nov 2022 30 Nov 2022 0 Comments  3195 Views
Here Mudassar Khan has explained with an example, how to use Stored Procedure in ASP.Net Core MVC.

The Stored Procedure is called using the FromSql function of Entity Framework in ASP.Net Core MVC.
26 Nov 2022 26 Nov 2022 0 Comments  1478 Views
Here Mudassar Khan has explained with an example, how to export data from database to PDF file in ASP.Net Core Razor Pages.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to PDF file using itext7.pdfhtml library in ASP.Net Core Razor Pages.
26 Nov 2022 26 Nov 2022 0 Comments  2490 Views
Here Mudassar Khan has explained with an example, how to export data from database to PDF file in ASP.Net Core MVC.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to PDF file using itext7.pdfhtml library in ASP.Net Core MVC.
26 Nov 2022 26 Nov 2022 0 Comments  1720 Views
Here Mudassar Khan has explained with an example, how to export data from database to PDF file in ASP.Net MVC Razor.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to PDF file using iTextSharp XMLWorkerHelper library in ASP.Net MVC Razor.
26 Nov 2022 26 Nov 2022 0 Comments  1581 Views
Here Mudassar Khan has explained with an example, how to export HTML string to PDF file in ASP.Net Core Razor Pages.

The data from database will be populated in HTML Table using Entity Framework in ASP.Net Core Razor Pages.

Finally, the HTML Table will be exported and downloaded as PDF file using itext7.pdfhtml library in ASP.Net Core Razor Pages.
26 Nov 2022 26 Nov 2022 0 Comments  1382 Views
Here Mudassar Khan has explained with an example, how to export HTML string to PDF file in ASP.Net Core MVC.

The data from database will be populated in HTML Table using Entity Framework in ASP.Net Core MVC.

Finally, the HTML Table will be exported and downloaded as PDF file using itext7.pdfhtml library in ASP.Net Core MVC.
25 Nov 2022 25 Nov 2022 0 Comments  1957 Views
Here Mudassar Khan has explained with an example, how to export data from database to CSV file in ASP.Net Core Razor Pages.

The data from the database is fetched using Entity Framework and a Comma Separated (Delimited) string is generated using StringBuilder class.

Finally, the generated string will be exported to CSV file in ASP.Net Core Razor Pages.
25 Nov 2022 25 Nov 2022 0 Comments  3439 Views
Here Mudassar Khan has explained with an example, how to export data from database to CSV file in ASP.Net Core MVC.

The data from the database is fetched using Entity Framework and a Comma Separated (Delimited) string is generated using StringBuilder class.

Finally, the generated string will be exported to CSV file in ASP.Net Core MVC.
25 Nov 2022 25 Nov 2022 0 Comments  1385 Views
Here Mudassar Khan has explained with an example, how to export data from database to CSV file in ASP.Net MVC Razor.

The data from the database is fetched using Entity Framework and a Comma Separated (Delimited) string is generated using StringBuilder class.

Finally, the generated string will be exported to CSV file in ASP.Net MVC Razor.
22 Nov 2022 22 Nov 2022 0 Comments  958 Views
Here Mudassar Khan has explained with an example, how to export data from database to Word document in ASP.Net Core Razor Pages.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to Word document in ASP.Net Core Razor Pages.
22 Nov 2022 22 Nov 2022 0 Comments  979 Views
Here Mudassar Khan has explained with an example, how to export data from database to Word document in ASP.Net Core MVC.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to Word document in ASP.Net Core MVC.
22 Nov 2022 22 Nov 2022 0 Comments  782 Views
Here Mudassar Khan has explained with an example, how to export data from database to Word document in ASP.Net MVC Razor.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to Word document in ASP.Net MVC Razor.
19 Nov 2022 05 Dec 2022 0 Comments  2234 Views
Here Mudassar Khan has explained a step by step tutorial with an example, how to use WebGrid in ASP.Net Core Razor Pages.

This article will explain how to implement WebGrid with Entity Framework and also display specific columns in WebGrid in ASP.Net Core Razor Pages.

The WebGrid will be implemented using the MVC6 Grid library in ASP.Net Core Razor Pages.
18 Nov 2022 05 Dec 2022 0 Comments  3050 Views
Here Mudassar Khan has explained a step by step tutorial with an example, how to use WebGrid in ASP.Net Core MVC.

This article will explain how to implement WebGrid with Entity Framework and also display specific columns in WebGrid in ASP.Net Core MVC.

The WebGrid will be implemented using the MVC6 Grid library in ASP.Net Core MVC.
18 Nov 2022 18 Nov 2022 0 Comments  1218 Views
Here Mudassar Khan has explained with an example, how to export HTML string to Excel file in ASP.Net Core Razor Pages.

First, the HTML Table will be populated from database using Entity Framework and then the HTML Table will be sent as HTML string to the Razor PageModel which will be exported to Excel file in ASP.Net Core Razor Pages.
18 Nov 2022 18 Nov 2022 0 Comments  1203 Views
Here Mudassar Khan has explained with an example, how to export HTML string to Excel file in ASP.Net Core MVC.

First, the HTML Table will be populated from database using Entity Framework and then the HTML Table will be sent as HTML string to the Controller which will be exported to Excel file in ASP.Net Core MVC.
15 Nov 2022 15 Nov 2022 0 Comments  710 Views
Here Mudassar Khan has explained with an example, how to export data from database to HTML file in ASP.Net Core Razor Pages.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to HTML (.htm) file in ASP.Net Core Razor Pages.
15 Nov 2022 15 Nov 2022 0 Comments  827 Views
Here Mudassar Khan has explained with an example, how to export data from database to HTML file in ASP.Net Core MVC.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to HTML (.htm) file in ASP.Net Core MVC.
15 Nov 2022 15 Nov 2022 0 Comments  963 Views
Here Mudassar Khan has explained with an example, how to export data from database to HTML file in ASP.Net MVC.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to HTML (.htm) file in ASP.Net MVC Razor.
14 Nov 2022 14 Nov 2022 0 Comments  833 Views
Here Mudassar Khan has explained with an example, how to export WebGrid to HTML File (HTML String) in ASP.Net MVC Razor.

First, the WebGrid will be populated from database using Entity Framework and then the generated HTML Table of WebGrid will be sent as HTML string to the Controller which will be exported to HTML (.htm) file in ASP.Net MVC Razor.
Results 61 - 80 of 420