How do you access a strongly bound complex type in a webGrid within MVC 3. Example, I have an object called Project that has another object as a property called Employee. The two objects relate to each other on a primary key EmployeeId. If the project is the strongly bound object, how does one access any properties that belong to the employee class that is a property on the Project class?
I have searched around and have found the answer of using dot notation. (Employee.EmployeeId) but that does not work
is there a specific way to do this when binding the columns?
Thanks.