I have a table defined in my Entity model. I also have the foreign key Navigation properties defined on the tables in the model.
Users
- UserID
- Username
- UserGroupID
Groups
- GroupID
- GroupName
I have a grid connected to an EntityDataSource, which retrieves and displays the Users table. Instead of displaying the UserGroupID identity column for each user, I need to display the corresponding GroupName. Is there an easy built in way to grab the GroupName from the User object since they are connected in the entity model?
Thanks! Kevin