For a one-to-many relationship like users and hobbies, a common approach is to display users in the main grid and use a multi-select dropdown (such as a checked combo box) or a separate child grid to manage hobbies. The user_hobby_map table handles the many-to-many link, so the grid can bind users normally while loading selected hobbies into a multi-select column editor. This keeps the interface clean while allowing multiple hobby selections per user.