How to bind Grid with EntityDataSource like I have table 'Comment' whihc hav reference of foreign keys od SystemUser and ProjectTeam as
AddBy(foriegn key of SystemUser)
ProjectTeamID(foreign key of ProjectTeam)
Now when I acess property of SystemUser through Comment like
<asp:Label ID="lblUserName" runat="server" Text='<%# Bind("SystemUser.UserName") %>'></asp:Label></b><br />
it gives me error like 'DataBinding: 'System.Data.Objects.MaterializedDataRecord' does not contain a property with the name 'SystemUser'.
Please Help
Go to the complete details ...