Tutorials on ASP.NET Core, Blazor, jQuery, JavaScript, Entity Framework, Identity, WordPress, SQL, HTML & more


DbContext Class in Entity Framework Core

Last Updated: March 2, 2026

dbcontext class

Entity Framework Core Database Context is an important class which is used to maintain session with the database. It thus help in performing all types database operations like creating, reading, updating and deleting records. We create a database context for the app by inheriting a class from the DbContext class of the Microsoft.EntityFrameworkCore namespace.

(more…)

Database-First approach in Entity Framework Core

Last Updated: February 7, 2025

database first approach

In Database-First approach the entity and context classes are automatically created by the EF Core from the database. So this means you have to first create your database for the app.

(more…)

Installation of Entity Framework Core

Last Updated: February 7, 2025

install entity framework core

In this tutorial you will learn How to Install Entity Framework Core on your project.

(more…)

Introduction to Entity Framework Core

Last Updated: March 28, 2026

introduction entity framework core

Entity Framework Core also known as EF Core is the latest version of Microsoft’s Entity Framework. It is an Object Relational Mapping (O/RM) framework, an enhanced version of ADO.NET, that automates data storage and retrieval from the database. EF Core is open source, cross-platform, lightweight, extensible and very powerful in nature. It is also very easy to learn and use in our DOT NET Projects.

(more…)

How to use jQuery Empty Method – .empty()

Last Updated: June 3, 2021

jquery empty

The jQuery Empty method - .empty() is used to remove all the contents and children of the element.

(more…)

How to use jQuery to Disable & Enable Controls

Last Updated: June 3, 2021

jquery disable enable

Many times you need to Disable or Enable controls with jQuery. Here use the jQuery Prop Method to enable or disable any control.

(more…)

jQuery Data – Method to Attach and Get unlimited data from selected elements

Last Updated: June 3, 2021

jquery data

The jQuery Data Method - .data() is used to attach unlimited data on selected elements. It is also used to retrieve data that are attached on elements.

(more…)

Learn jQuery Closest Method – .closest() with Example and Codes

Last Updated: June 3, 2021

jquery closest

If you want to find a parent, grandparent, great-grandparent, and so on, of an element then use jQuery Closest method. You can also provide the filter conditions to narrow down this search.

(more…)

How to use jQuery Change Method on textbox, select, radio and checkbox

Last Updated: June 3, 2021

jquery change

The jQuery Change method occurs when the value of the element changes. It can be applied to textbox, select, textarea, radio button and checkbox.

(more…)

How to use jQuery Tabs feature in less than 1 minute

Last Updated: June 3, 2021

jquery tabs

Tabs are a great way of displaying lots of content in a small area. Only one tab is visible at a time and others are hidden. Clicking on a tab will display it and hide all the others.

(more…)