I have a datagrid, named orderItemsGrid, which contains the columns (or TextColumn Headers, to prevent confusion) Item Name, Unit Price, Quantity, and Amount (Amount=Quantity*unitPrice) of each item that a customer has ordered in an order. I would like to fetch the info to this grid from a SQL Express 2008 R2 Database, called Business, using LINQ to SQL. But the problem is, the columns ItemName and Price exist in the table named ITEMS and the columns Quantity and Amount are in ORDER_ITEMS.
If you find the problem unclear, please see the database screenshot here: hxxp://i.imgur.com/ZojkH.png
Relationships: FK_ORDER_ITEMS_ORDERS (OrderID) FK_ORDER_ITEMS_ITEMS (ItemID)
Or if you prefer, the database diagram is here: http://i.stack.imgur.com/MY8G3.png
Please revert with comments and also I would be happy to provide anymore info you might need.
Thank you.