Hi,
I have a GridView DataBind with entity ClassA's properties that is working fine. I am able to directly bind below properties in ASPX file. ClassA.Id ClassA.Name etc.
But ClassA also have a navigation property to related ClassB. I would like in a the same GridView to display related classB's properties.
I try to bind the following in the GridView but it does not work even if I am able to properly evalute the below value in debug mode (entity performs lazy loading when required). ClassA.classB.Name
How should I proceed ?