I have two tables:
Products
-ProductID,
-ProductName,
-ProductCategoryID,ProductCategories
-ProductCategoryID,
-ProductCategoryName,
I am using a dataset and I can successfully set up a relationship from the Products [ProductCategoryID] to the ProductCategoryID table. How do I get the Gridview to show up with ProductCategoryName rather than the integer reference?
I'm accustomed to Access where this just happens by default but it doesn't seem to work that way in Visual Studio.