MyEasySQL is a lightweight C# library designed to streamline interactions with MySQL databases. It leverages Dapper for efficient data access and provides an intuitive API for performing common operations such as querying, inserting, updating and deleting records. MyEasySQL supports asynchronous operations, providing flexible connection management and optimised query construction for small to large applications.
Run dotnet add package MyEasySQL
- CRUD Operations: Simplified methods for inserting, updating, selecting, and deleting records with optional conditions.
- Database & Table Management: Create and drop databases and tables with a fluent API.
- Dapper Integration: Built on Dapper for efficient data access and object mapping.
- Asynchronous Operations: Perform database operations asynchronously for improved performance.
See MyEasySQLTest for an example.