I am trying to do this:\[code\]protected void Page_Load(object sender, EventArgs e){ Group g = SecurityManager.GetGroup("Programmers"); IEnumerable<EmployeGroup> emps = SecurityManager.GetEmployeesByGroup(g.GroupID); ListBox1.DataSource = emps; ListBox1.DataTextField = "Employee.EmployeName"; ListBox1.DataBind();}\[/code\]Inside an \[code\]EmployeGroup\[/code\] there is an \[code\]Employee\[/code\] and a Group.I want to show the Employee's \[code\]EmployeName\[/code\] member.Is there some way to do this without doing:for each Employee. Add to listbox.