I drag and drop a DataSource
on my winform which creates the DataGridView and corresponding BindingNavigator. Finally my .cs code file has just one line in Load() event:
userLogsTableAdapter.Fill(dataSetUserLogs.UserLogs);
Very neat! The problem is that one field of my UserLogs table is foreign key and I wanna show its description instead of the ID. I read many articles including this SO question but none is addressing this specific requirement using DataSource drag-drop method. I have to create many types of logs in my app. Can't afford to create DataSources and BindingNavigators from scratch in code for almost 25 types of logs. Kindly point me to the right direction.
Also how to filter the displayed data as discussed in the above-referred question.