Hi All, I'm getting a List back from a WCF service and I want to set it to be the datasource for a grid. When I databind I get the error that "Deviceheader" is not a property of someObject.
<td><%# Eval("Deviceheader.DeviceID") %></td>
That is true, it's not a property, it's a public field
public class someObject(){
public DeviceHeaderDc Deviceheader;
}
How can I databind to these fields since they are not implemented as properties? Any suggestions? I'd like to avoid writing wrapper objects with property implementations if at all possible. If anyone has any tips or tricks I can use here, I'm all ears.
Cheers,
~ck