An open API service indexing awesome lists of open source software.

https://github.com/poojithathimegowda/sqllitecrudlibrary


https://github.com/poojithathimegowda/sqllitecrudlibrary

netcore sqlite

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# SQLite CRUD Library for C#

A lightweight and generic C# library that provides helper functions to perform CRUD (Create, Read, Update, Delete) operations with a SQLite database. This library is designed to simplify database interactions by offering easy-to-use methods for common database tasks.

## Features

- CRUD Operations: Perform Create, Read, Update, and Delete operations on SQLite databases with minimal code.
- Generic Implementation: Supports working with different data models through a generic interface.
- Connection Management: Handles SQLite connection setup and management.
- Parameterized Queries: Helps prevent SQL injection attacks by using parameterized queries.
- Transaction Support: Supports transactions for executing multiple operations atomically.