Meal Suggestion App Tutorial
Introduction
This tutorial walks you through how to create a Meal Suggestion App that will save users’ time thinking about what to eat today.
The application will allow users to:
- view, create, and delete dishes (breakfast / non-breakfast) that are candidates for suggestions, using a persistent database
- get a suggestion for a meal
- get suggestions for meal plans (breakfast, lunch, and dinner for a day), selecting the number of days
Programming Languages
The app is built using C# (overall structure) and SQL (data management). Readers are recommended to code in Visual Studio and have access to WPF (Windows Presentation Foundation) templates and EF (Entity Framework) of .NET framework.
Target Audience
Programmers who have taken Programming 1 (COMP100), Programming 2 (COMP123), and Programming 3 (COMP212) at Centennial College or who have equivalent knowledge are theĀ intended readers for this tutorial.
Table of Contents
There are 5 chapters for this tutorial.
- Create and Connect Windows
- Build Data Model
- Build ManageDishes Window
- Build SingleSuggestion Window
- Build MultipleSuggestions Window
Git Repository
You can find all versions of the code in the GitHub repository.