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…)
The jQuery Empty method - .empty() is used to remove all the contents and children of the element.
(more…)
Many times you need to Disable or Enable controls with jQuery. Here use the jQuery Prop Method to enable or disable any control.
(more…)
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…)
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…)
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…)
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…)
The jQuery this selector is widely used and many times people get confuse to understand it fully. Therefore I decided to write this tutorial which explains the usage of $(this) selector with some easiest examples.
(more…)
The jQuery Prop method - .prop(), gets or sets the property values of selected elements. These properties can be - border of an element, checkbox checked value, disabled, and so on.
(more…)
The jQuery Attr method - .attr(), gets or sets the value of HTML attributes of elements. The HTML attributes can be width, height, title, value, src, href, etc.
(more…)