I have the following tables
TUser (user_id,firstname,lastname) PK user_id
TGroup (group_id,name) PK group_id
TUsersGroups (user_id,group_id) PK (user_id,group_id) FK (user_id) FK (group_id)
I need to bind to a DataGrid the TUsers, showing the following columns firstname,lastname and groupname (the NAME taken from the TGroup.
I know I can accomplish this via the Subsonic Query, but is there a way to get the list of type TUserCollection showing the Group Name?