C
C#ā€¢3y ago
Bobby Bob

Referencing a foreign key in a DBSet [Answered]

I'm trying to create a small coffee POS system, see above for my main DBSet Product Catalogue that keeps a database of all of the products available for the coffee shop. Users (the employees in this case) have the option to add a product of their choice into the order menu. However, I don't let the user type out a string of the exact name matching the product's name because that would unrealistically assume that the employee knows the product off by heart. Instead, I want the console to prompt the user for an item, something like this
What type of drinks would you like to add to the order menu?
1: Traditional Coffee
2: PhinDi Coffee
3: Tea

> 2

What PhinDi Coffee would you like to add to the order menu?
1: Iced Coffee with Almond & Fresh Milk
2: Iced Coffee with Milk Foam
3: Iced Coffee with Chocolate

> 3

Item has been successfully added, returning to menu order screen...
What type of drinks would you like to add to the order menu?
1: Traditional Coffee
2: PhinDi Coffee
3: Tea

> 2

What PhinDi Coffee would you like to add to the order menu?
1: Iced Coffee with Almond & Fresh Milk
2: Iced Coffee with Milk Foam
3: Iced Coffee with Chocolate

> 3

Item has been successfully added, returning to menu order screen...
66 Replies
Bobby Bob
Bobby BobOPā€¢3y ago
Below is the code to prompt user for a similar sequence of multiple-choice inputs
private static Product PromptForItem()
{
// Instance Variable
var indexNumber = 0;

// Connects to the database
using var database = new DatabaseModel();

// Gets a collection of categories from "Categories" table
var availableCategory = database.Categories.Select(x => x.CategoryName);
Console.WriteLine("The available categories are: \n");

// Displays available categories to choose from
foreach (var categories in availableCategory)
{
indexNumber += 1;
Console.WriteLine($"{indexNumber}: {categories}\n");
}

// Gets user input and parses it to a category
Console.Write("Category Number: ");
var categoryNumber = Convert.ToInt32(Console.ReadLine());
var chosenCategory =
database.Categories.Find(categoryNumber); // Which contains the primary key for the reference key

// Gets a collection of products from "ProductProperties" table
var availableProductRecords = database.ProductCatalogues.Where(x => x.Category == chosenCategory);
var availableProducts = availableProductRecords.Select(x => x.ENname).ToList();

// Displays available products to choose from the specified category
for (var i = 0; i < availableProducts.Count; i++) Console.WriteLine($"{i}: {availableProducts[i]}");

// Prompt user for a product
var productNumber = Convert.ToInt32(Console.ReadLine());
var chosenProductString = availableProducts[productNumber];

// Gets the product the user has chosen
var chosenProduct = availableProductRecords.Single(x => x.ENname == chosenProductString);
return chosenProduct;
}
private static Product PromptForItem()
{
// Instance Variable
var indexNumber = 0;

// Connects to the database
using var database = new DatabaseModel();

// Gets a collection of categories from "Categories" table
var availableCategory = database.Categories.Select(x => x.CategoryName);
Console.WriteLine("The available categories are: \n");

// Displays available categories to choose from
foreach (var categories in availableCategory)
{
indexNumber += 1;
Console.WriteLine($"{indexNumber}: {categories}\n");
}

// Gets user input and parses it to a category
Console.Write("Category Number: ");
var categoryNumber = Convert.ToInt32(Console.ReadLine());
var chosenCategory =
database.Categories.Find(categoryNumber); // Which contains the primary key for the reference key

// Gets a collection of products from "ProductProperties" table
var availableProductRecords = database.ProductCatalogues.Where(x => x.Category == chosenCategory);
var availableProducts = availableProductRecords.Select(x => x.ENname).ToList();

// Displays available products to choose from the specified category
for (var i = 0; i < availableProducts.Count; i++) Console.WriteLine($"{i}: {availableProducts[i]}");

// Prompt user for a product
var productNumber = Convert.ToInt32(Console.ReadLine());
var chosenProductString = availableProducts[productNumber];

// Gets the product the user has chosen
var chosenProduct = availableProductRecords.Single(x => x.ENname == chosenProductString);
return chosenProduct;
}
What I don't understand is this line right here throws an error
Bobby Bob
Bobby BobOPā€¢3y ago
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
Bobby Bob
Bobby BobOPā€¢3y ago
I'm trying to reference a foreign key through the categories table something like above
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
How do I compare the categories ID? That's the thing, the DBSet I show above doesn't have a property literally named "CategoriesID" it's a foreign key made by EF Core What's the code to compare 2 ID's?
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

namespace CoffeeShop_POS_Project_with_EF_Core.Domain;

[Table("Product Catalogue")]
public class Product
{
// Miscellaneous Information
public Categories Category; // Each product belongs to a category
public int ProductId { get; set; }

// Name of the product
[MaxLength(100)] [Unicode(false)] public string ENname { get; set; }
[MaxLength(100)] public string? VNname { get; set; }
public List<ProductProperties> ProductVariantsList { get; set; } // Each product has 3 of it's own variations
public bool Recommended { get; set; } // Recommended or not
}
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

namespace CoffeeShop_POS_Project_with_EF_Core.Domain;

[Table("Product Catalogue")]
public class Product
{
// Miscellaneous Information
public Categories Category; // Each product belongs to a category
public int ProductId { get; set; }

// Name of the product
[MaxLength(100)] [Unicode(false)] public string ENname { get; set; }
[MaxLength(100)] public string? VNname { get; set; }
public List<ProductProperties> ProductVariantsList { get; set; } // Each product has 3 of it's own variations
public bool Recommended { get; set; } // Recommended or not
}
Bobby Bob
Bobby BobOPā€¢3y ago
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
Do I include that in 2 seperate DBSets or into one DBSet that is my Product Catalogue
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
ah, what does the .Include() method do?
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
yep, and I also have the ProductId Do I have to include
public Categories Category { get; set; }
public Categories Category { get; set; }
In my product catalogue table?
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
where do I write that code?
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
o-0
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
That's really weird, even though CategoryID belongs to the Categories class
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
hold on, if I include the "CategoryId" does "CategoryId" refer to the foreign key specificallt?
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
*specifically
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
oooooh, interesting that the Post class has a BlogId and a Blog property
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
Is that what's required to access the foreign key directly? šŸ˜®
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
Ah, btw just to recap
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
public Categories Category { get; set; }
public int CategoryId { get; set; }
public Categories Category { get; set; }
public int CategoryId { get; set; }
Do I write it like that or
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
public Categories Category { get; set; }
public int CategoriesId { get; set; }
public Categories Category { get; set; }
public int CategoriesId { get; set; }
Like that?
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
Like does the int have to match with the primary key name of Categories table? ooooooo So it's navigation property name followed by ID
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
Bobby Bob
Bobby BobOPā€¢3y ago
Alright got it here's my new code Actually I'll just link to you my github repo That way you can clone it and see the entire source code
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
GitHub
GitHub - blueboy90780/Coffee-POS-System: A small practice project t...
A small practice project to consolidate all learning materials in &quot;C# 10 Fundamentals&quot; PluralSight course so far - GitHub - blueboy90780/Coffee-POS-System: A small practice projec...
Bobby Bob
Bobby BobOPā€¢3y ago
Oh why is that? btw that's my code
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
Hi, sorry for going away for a while, is it okay if we call? @Duke
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
I'm stuck with this error and I've been agonizing over how to fix this foreign key issue
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
It's ehre
Bobby Bob
Bobby BobOPā€¢3y ago
Bobby Bob
Bobby BobOPā€¢3y ago
I just made a new remote push btw The repo is completely updated with my local one I'm not sure what I'm doing wrong
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
like all the data in my table?
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
Delete the entire DB?
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
ALright I'll do that and then copy the data over to the new databse *database Is there a shortcut to delete all of the migrations in one command line?
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOPā€¢3y ago
ooooo DElete the folder and db right? THE BUILD SUCCEEDED WOOOOHOOOOOO
Bobby Bob
Bobby BobOPā€¢3y ago
Bobby Bob
Bobby BobOPā€¢3y ago
I DID it!!!!!!!!!!!!!!!!!!! I DID IT!!!!!!! FUCKING FINALLY JAWOIDJAIODJOIAWJDIOWJOIDJWIODJ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA MY PROGRAM FINALLY WORKS AS INTENDED!!!!!
Unknown User
Unknown Userā€¢3y ago
Message Not Public
Sign In & Join Server To View
MODiX
MODiXā€¢3y ago
Spectre.Console is a .NET library that allows for easy creation of console UIs, text formatting in the console, and command-line argument parsing. https://spectreconsole.net/
Spectre.Console - Welcome!
Spectre.Console is a .NET Standard 2.0 library that makes it easier to create beautiful console applications.
Bobby Bob
Bobby BobOPā€¢3y ago
I have, but I'm going to get to that once I get the core business logic down
Accord
Accordā€¢3y ago
āœ… This post has been marked as answered!

Did you find this page helpful?