Hello!
I have 3 tables
Customer(CustomerID, CustomerName)
Products(ProductID, ProductName, Price)
Income(ID, CustomerID, ProductID, Price, Quantity, Total)
I now use a DataGrid to fill the table Income. But for a good view, I must
display in the DataGrid CustomerName, ProductName (not CustomerID and
ProductID, but In fact When I save the data to the table Income, I must save
CustomerID and ProductID). In the result, the Income table will be displayed
in DataGrid like that ( ID, CustomerName, ProductName, Price, Quantity,
Total). Please help me to solve this problem.
Thanks!