SimpleTextDatabase is a lightweight text-based database library designed to provide basic ORM functionality with minimal setup. It allows you to create tables, insert data, and perform simple queries on text-based databases.
- Table Creation: Define and create tables with columns of various data types.
- Data Insertion: Insert rows of data into your tables.
- Data Querying: Retrieve and filter data from your tables.
- Transaction Support: Manage transactions with commit and rollback capabilities.
To install the SimpleTextDatabase
package, use the following command:
dotnet add package SimpleTextDatabase