Using Dapper ORM with ComponentOne Blazor. How to integrate Dapper with ComponentOne Blazor FlexGrid to perform CRUD operations. ComponentOne Blazor Edition is a set of blazor UI controls provided by ComponentOne.
Micro-ORMs are lightweight object-relational mappers (ORM), and Dapper, also known as the King of Micro ORM, is the most popular micro-ORM. It is a simple object mapping tool that lets you work with data using business objects in a .NET application without writing code to map query results from ADO.NET data readers to instances of objects. It is an open-source, lightweight ORM developed by the Stack Overflow team and is very fast compared to other ORMs primarily because of its lightweight. It provides support for both static and dynamic object binding using SQL Query, transactions, and stored procedures.
Install Dapper using Nuget Package Manager.
Create the POCO classes for database tables.
Create an IDbConnection Object.
Write a SQL query to perform either of the CRUD operations.
Passe Query as Parameter in the Execute Method to fetch the desired results.
ComponentOne Blazor Edition is a set of blazor UI controls provided by ComponentOne. For details, refer to demos and documentation.
This article will demonstrate how to perform CRUD operations on FlexGrid control from the ComponentOne Blazor Edition using Dapper.
Now, let's integrate the above steps to create a Blazor application that would use Dapper to perform CRUD operations in FlexGrid.
In this blog post, I will share the Free e-book: Blazor for ASP.NET Web Forms Developers PDF. This book is great for ASP.NET Web Forms developers looking for guidelines. As well as strategies for migrating their existing apps to a modern, open-source, and cross-platform web framework.
Releasing new e-book: Blazor for ASP.NET Web Forms Developers. It covers guidelines and strategies for migrating existing apps to a modern web framework.
In this article, we’ll discuss how to use jQuery Ajax for ASP.NET Core MVC CRUD Operations using Bootstrap Modal. With jQuery Ajax, we can make HTTP request to controller action methods without reloading the entire page, like a single page application.
LIKE | COMMENT | SHARE | SUBSCRIBE How to call and consume a REST API from ASP.NET Core Blazor application. Blog : https://aspdotnetexplorer.blogspot.com/sea...
LIKE | COMMENT | SHARE | SUBSCRIBE API stands for Application Programming Interface. API is some kind of interface which has a set of functions that allow pr...