Hi!
I am usingVisual Studio 2010. I have a little problem for data binding.
There are two SQL tables.
1st Products:
- prod_id
- prod_name
- Prod_goup_id (FK)
2nd groups:
- group_id
- GROUP_NAME
Add to a data source in the two tables.
If I "throw" the products to from I can change the values on itemsTableAdapter.Update function. However, the grid is only displayed prod_goup_id and not the GROUP_NAME. Can I put the same GROUP_NAME field to the table, but there not be able to Update function.
If I manually write the update function will only know identify a record prod_id field and I do not want to display the grid.
What are possible solutions?