A simple CRUD command-line inventory management system built in C# using SQLite for local data storage.
- Create new inventory items
- View all items
- View item by ID
- Update existing items
- Delete items
- Persistent local storage using SQLite
- C#
- .NET
- SQLite
The application uses a local SQLite database to store inventory items. On startup, the program checks for the database file and creates the required table if it does not exist.
All operations are handled through a simple console-based user interface.
git clone https://github.com/your-username/inventory-manager.git
cd inventory-manager
dotnet run
