Welcome to Jokes App, a delightful application where you can Create, Read, Update, and Delete jokes. Built with the power of .NET C#
and SQL Server, this app will tickle your funny bone while showcasing clean and efficient CRUD operations.
- 📖 About
- 🚀 Features
- 🛠 Prerequisites
- 📥 Installation Guide
- 🏃 Running Guide
- 🛢 SQL Server Configuration
- 📌 API Endpoints
- 📸 Screenshots
- 💡 Jokes API Example
- 📜 License
The Jokes App is a CRUD-based project where users can manage jokes through a seamless UI. The backend is powered by .NET C#
, while SQL Server handles data storage. Perfect for learning or showcasing CRUD operations with a sprinkle of humor!
✅ Add your favorite jokes
✅ View all jokes with pagination
✅ Edit existing jokes
✅ Delete jokes you no longer find funny
Before you begin, ensure you have the following tools installed:
Tool | Version |
---|---|
Visual Studio | 2022 or later |
.NET SDK | 6.0 or later |
SQL Server | 2019 or later |
Entity Framework | Core 6.0 |
-
Clone the repository:
git clone https://github.com/your-username/jokes-app.git cd jokes-app
-
Open the project in Visual Studio.
-
Restore NuGet packages:
dotnet restore
-
Update the appsettings.json file with your SQL Server connection string:
"ConnectionStrings": { "DefaultConnection": "Server=YOUR_SERVER_NAME;Database=JokesDB;Trusted_Connection=True;MultipleActiveResultSets=true" }
-
Run database migrations:
dotnet ef database update
- Open the project in Visual Studio.
- Set the startup project to JokesApp.API.
- Press
F5
or run the project using the play button▶️ . - Access the app at:
Frontend:http://localhost:5000
API:http://localhost:5000/api/jokes
- Open SQL Server Management Studio (SSMS).
- Create a new database called
JokesDB
:CREATE DATABASE JokesDB;
Update your appsettings.json file with your SQL Server name:
"ConnectionStrings": {
"DefaultConnection": "Server=YOUR_SERVER_NAME;Database=JokesDB;Trusted_Connection=True;"
}
In the terminal, execute:
dotnet ef migrations add InitialCreate
dotnet ef database update
Method | Endpoint | Description |
---|---|---|
GET |
/api/jokes |
Fetch all jokes |
POST |
/api/jokes |
Add a new joke |
PUT |
/api/jokes/{id} |
Update an existing joke |
DELETE |
/api/jokes/{id} |
Delete a joke |
Coming soon! 🎨
Here’s a quick joke for you:
{
"id": 1,
"content": "Why don’t skeletons fight each other? They don’t have the guts!"
}
This project is licensed under the MIT License.
Feel free to use, modify, and share!
✨ Happy coding! Keep joking! 🎉 - Nuu