I have two datagridviews:
-> dgvMenu
-> dgvMenuItem
dgvMenu:
will display all the menus that are in the database.
dgvMenuItem:
Will display all the items of the menu selected in the dgvMenu.
How can i get the items of the menu?
My DataBase
tblMenus:
-> ID (PK)
-> Name
-> Description
-> DateAdded
tblMenuItem
-> ItemID (FK)
-> MenuID (FK)
tblItems
-> ID (PK)
-> Name
-> Type
-> Price
-> Picture