https://github.com/poojithathimegowda/sqllitecrudlibrary
https://github.com/poojithathimegowda/sqllitecrudlibrary
netcore sqlite
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/poojithathimegowda/sqllitecrudlibrary
- Owner: poojithathimegowda
- Created: 2024-08-30T18:27:59.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T10:09:54.000Z (almost 2 years ago)
- Last Synced: 2025-03-14T02:13:44.009Z (over 1 year ago)
- Topics: netcore, sqlite
- Language: C#
- Homepage:
- Size: 7.07 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.