This is a web application built using ASP.NET Core and Razor Pages to manage the Products
entity from the Northwind.db
database. The application provides functionality for users to view, add, update, and delete products in the database. It also integrates with a custom-built API to handle data operations.
- View Products: Display a list of products with their details.
- Add Product: Create a new product and save it to the database.
- Update Product: Edit the details of an existing product.
- Delete Product: Remove a specific product from the database.
- API Integration: Uses a custom-built API for seamless data communication.
- Backend: ASP.NET Core 7.0
- Frontend: Razor Pages
- Database: SQLite (
northwind.db
) - API: Custom-built RESTful API for CRUD operations
- Styling: Basic HTML and CSS (optional customization)
Ensure the following are installed on your system:
- .NET SDK (version 7.0 or later)
- SQLite (if managing the database locally)
- Run App:
dotnet run