var staffProfiles =from staffin XrmContext.new_peopleprofileSet
selectnew
{
Name = staff.new_PeoplesName,
Iwi = staff.new_Iwi,
Position = staff.new_PositionandResponsibilities,
};
staffProfilesRepeater.DataSource = staffProfiles;
staffProfilesRepeater.DataBind();
I want to access Image field here and want to bind with this repeater. But this generates an error. Can Anyone help me.
# Page Coderaj