ASP.Net MVC: Entity Framework with Existing Database
Here Mudassar Ahmed Khan has explained with an example, how to connect with existing Database using Entity Framework in ASP.Net MVC Razor. This article will explain how to configure Entity Framework...
View ArticleASP.Net MVC: Generate Database Context and Entity Classes with Existing Database
Here Mudassar Ahmed Khan has explained with an example, how to generate Database Context and Entity Classes i.e. Model classes or POCO classes with existing Database with Entity Framework in ASP.Net...
View ArticleConnecting MVC Application to Database using Entity Framework in ASP.Net
Here Mudassar Ahmed Khan has explained with an example, how to connect MVC Application to Database using Entity Framework in ASP.Net. Using the Entity Framework configuration wizard, the SQL Server...
View ArticleASP.Net Core: Generate Database Context and Entity Classes with Existing...
Here Mudassar Ahmed Khan has explained with an example, how to generate Database Context and Entity Classes i.e. Model classes or POCO classes with existing Database with Entity Framework in ASP.Net...
View ArticleASP.Net Core: Insert Data into Database using Entity Framework
Here Mudassar Ahmed Khan has explained with an example, how to insert data into Database using Entity Framework in ASP.Net Core MVC. When the Submit Button is clicked, the Form is submitted and the...
View ArticleASP.Net Core Razor Pages: Pass (Send) data from Page Model to Razor Page
Here Mudassar Ahmed Khan has explained with an example, how to pass (send) data from Page Model to Razor Page (cshtml) in ASP.Net Core Razor Pages. The data will be set into a public property inside...
View ArticleBind Model Properties in ASP.Net Core Razor Pages
Here Mudassar Ahmed Khan has explained with an example, how to bind Model Properties in ASP.Net Core Razor Pages. The value of the Name attribute of the Field e.g. a TextBox is used as the name of the...
View ArticleUsing the OnPost handler method in ASP.Net Core Razor Pages
Here Mudassar Ahmed Khan has explained with an example, how to use the OnPost handler method in ASP.Net Core Razor Pages. The OnPost handler method is used for handling Form Submissions and the name of...
View ArticleASP.Net Core Razor Pages: Display Current Date and Time in Razor Page (cshtml)
Here Mudassar Ahmed Khan has explained with an example, how to display Current Date and Time in Razor Page (cshtml) in ASP.Net Core Razor Pages. The Current Date and Time will be determined inside the...
View ArticleSending AntiForgeryToken with AJAX requests in ASP.Net Core Razor Pages
Here Mudassar Ahmed Khan has explained with an example, how to send AntiForgeryToken with AJAX requests in ASP.Net Core Razor Pages. The AntiForgeryToken is used to prevent cross-site request forgery...
View ArticleWeb API CRUD Operations using Entity Framework in ASP.Net MVC
Here Mudassar Ahmed Khan has explained a tutorial with example, how to perform Web API CRUD Operations using Entity Framework in ASP.Net MVC Razor. The Web API will contain Action methods for...
View ArticleWeb API CRUD with Entity Framework Database First approach in ASP.Net MVC
Here Mudassar Ahmed Khan has explained a tutorial with example, how to perform Web API CRUD with Entity Framework Database First approach in ASP.Net MVC Razor. The Entity Framework will be used to...
View ArticleReverse a String without using in-built String function in C# and VB.Net
Here Mudassar Ahmed Khan has explained with an example, how to reverse a String without using in-built String function in C# and VB.Net. This article will illustrate how to reverse a String using a...
View ArticleCreate Web API in ASP.Net C# with SQL Server Database
Here Mudassar Ahmed Khan has explained with an example, how to create Web API in ASP.Net C# with SQL server database in ASP.Net MVC Razor. The Web API Controller method will fetch records from SQL...
View ArticleCall Web API from another Project in ASP.Net MVC
Here Mudassar Ahmed Khan has explained with an example, how to call Web API from another Project in ASP.Net MVC Razor. The Web API 2 Controller’s Action method will fetch records from the SQL Server...
View ArticleAuto Increment Primary Key with Entity Framework Database First Approach in...
Here Mudassar Ahmed Khan has explained with an example, how to get Auto Increment Primary Key with Entity Framework Database First using C# in ASP.Net MVC Razor. When the Form is submitted, the value...
View ArticleRetrieving data from Database and displaying in DropDownList in ASP.Net MVC Core
Here Mudassar Ahmed Khan has explained with an example, how to retrieve data from Database and displaying in DropDownList in ASP.Net MVC Core. The records from the SQL Server Database will be retrieved...
View ArticleBind (Populate) DropDownList in ASP.Net Core Razor Pages
Here Mudassar Ahmed Khan has explained with an example, how to populate (bind) DropDownList using ADO.Net in ASP.Net Core Razor Pages. The records from the Database will be fetched from Database Table...
View ArticleUsing ADO.Net Database Connection in ASP.Net Core Razor Pages
Here Mudassar Ahmed Khan has explained with an example, how to use ADO.Net Database Connection in ASP.Net Core Razor Pages. This article will illustrate how to connect to Database using ADO.Net and...
View ArticleDatabase Connection without Entity Framework in ASP.Net Core Razor Pages
Here Mudassar Ahmed Khan has explained with an example, how to do a Database Connection without using Entity Framework in ASP.Net Core Razor Pages. This article will illustrate how to connect to...
View Article