EXERCISE TOPIC▼
- Access exercises (91)
- C# exercises (79)
- Excel exercises (278)
- Power Apps exercises (13)
- Power Automate exercises (18)
- Power BI exercises (139)
- Power Platform exercises ()
- Python exercises (28)
- Report Builder exercises (141)
- SQL exercises (198)
- SSAS exercises (51)
- SSIS exercises (46)
- SSRS exercises (99)
- VBA exercises (85)
- Visual Basic exercises (46)
C# EXERCISES▼
VISUAL C# EXERCISES▼
- Creating forms (4)
- Coding form events (1)
- Laying out your code (2)
- C# variables (4)
- Enumerations and constants (2)
- Conditions (2)
- Modular code (3)
- Arrays (2)
- Looping (2)
- Files and folders (3)
- Properties in C# (3)
- Using lists (3)
- Validating forms (6)
- Toolbars, menus and status bars (1)
- FileDialogs and StreamReaders (1)
- Debugging and trapping errors (1)
- Introduction to DataGridViews (1)
- DataGridView events (3)
- Complex DataGridViews (2)
- Creating classes (4)
- The form as a class (1)
- Data structures (6)
- Inheritance (5)
- Interfaces (2)
- Delegates and events (2)
- Writing LINQ (2)
- Advanced LINQ (2)
- Entity Frameworks (1)
- LINQ with Entity Frameworks (4)
- Grouping using LINQ (2)
- LINQ to SQL (2)
Visual C# | LINQ with Entity Frameworks exercise | Create a form to show events for a continent and category
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
Software ==> | Visual C# (79 exercises) |
Version ==> | Any version of C# |
Topic ==> | LINQ with Entity Frameworks (4 exercises) |
Level ==> | Harder than average |
Subject ==> | C# training |
- Go into SQL Server Management Studio;
- Open the SQL file you've just unzipped (you can press CTRL + O to do this); then
- Execute this script.
This will generate the database that you'll need to use in order to do this exercise (note that the database and script are only to be used for exercises published on this website, and may not be reused or distributed in any form without the prior written permission of Wise Owl).
You need a minimum screen resolution of about 700 pixels width to see our exercises. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
If you haven't already got one, create a Windows Forms project (using Visual C#, obviously) called wiseowl. Right-click on your project in Solution Explorer to add an existing item, and choose the file frmChoose.cs in the above folder.
Make this the default form in Program.cs. When you run your application, you should see a form like this:

Sadly the combo boxes are empty, and the button doesn't do anything! Yet ...
If you haven't already done so, right-click in Solution Explorer and add an ADO.NET Entity Data Model based on the WorldEvents database (tick all of the tables).
Create LINQ statements to set the data source for the continent combo box to get this:

When you open the form, the combo box should show a list of the continents in the database (although it's actually the continent id which is being stored).
Your LINQ statement should return an anonymous type containing two fields
Field | What it should hold |
---|---|
Id | The id number of the continent |
Name | The name of the continent |
You can then run these statements to populate the combo box:
cmbCategory.ValueMember = "Id";
cmbCategory.DisplayMember = "Name";
// set this to be basis for combo box
cmbCategory.DataSource = categories.ToList();
In a similar way, populate the category combo box.
Add a datagridview to the bottom of the form. Run a third LINQ statement from the button, so that when you click on it you see a list of all of the events for the continent and category you've chosen. For example:

Africa has 3 politics events in the database.
Check that if a particular continent/category combination has no events, you get a suitable message:

Africa has no alien events (at least, not in the Wise Owl database).
Give yourself a big pat on the back, and close down your forms.