Description:
I have a problem regarding DataGridView. I need to show a Client_Name instead of Id_client
This is the Product table and it has a relationship with the Clienttable.
IMAGE :

I’m using Access DB and DataSet.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In order to avoid having to do multiple queries to get the client name for each product you should include on your query an inner join to Clients table and return the client name along with the product data.
We could help more if you specify your data access strategy.