there is a list to put into the DataGridView, which looks like this:
class User{
    int id;
    string name;
    int age;
    Job job;
}
class Job{
    int id;
    string name;
    int userId;
}putting the read list of User type directly into DataGridView cannot display Job related information. How can I display Job-related information?
