I have the following columns in my bindingsource BookID, Name, Price, StatusID. StatusID is a foreign key.
Another table has the following columns StatusID, Status_Name.
I want Radgridview to contain the following columns: Name, Price, Status_Name. How can I do that? I cann't do that by a query because I will loose update capabilities of my tableadapter. Should I do that by templates? How can I accomplish this?
Thanks!