Learn Dapper: https://www.learndapper.com/
Dapper Tutorial: https://dappertutorial.net/
Info
Version: | 2.2.0 |
Author(s): | DAIKOZ |
Last Update: | Friday, August 2, 2024 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://www.sqlwrapper.com/ |
NuGet Url: | https://www.nuget.org/packages/Daikoz.SQLWrapper |
Install
Install-Package Daikoz.SQLWrapper
dotnet add package Daikoz.SQLWrapper
paket add Daikoz.SQLWrapper
Daikoz.SQLWrapper Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
It's a powerful tool that helps speed up development by reducing the need for manual coding. It works with databases various SQL database (MySQL, MariaDB, ...), checking the syntax and performance of SQL queries before you execute them.
It's important to note that SQLWrapper isn't like other tools that map objects to database tables (ORMs). Instead, it directly generates code from your SQL queries and database structure, which performs better than tools like LINQ, EntityFramework, dapper, ..and doesn't have the same limitations.
One feature is that it can look at your database's structure to check if your SQL queries are correct, and it can create an XML file listing all the data your queries need and return.
Then, you can use XSLT templates to turn that XML into code in languages like C#, and more.
Overall, DAIKOZ.SQLWrapper is a handy tool for making SQL code easier to work with, saving time, and helping you write better code.