This question is locked. New answers and comments are not allowed.
I have a RadGridView object which is connected to EntitySet via ItemsSource property.
After loading, in entity set there are 4 elements, user can see rows in GUI, but the grid.Items property is empty.
I can see it in watch window while debugging :
gridStudents.Items.Count 0 int
((System.ServiceModel.DomainServices.Client.EntitySet<IStudents.Web.Services.RelationshipsStudent>)gridStudents.ItemsSource).Count 4 int
Shouldn't gridStudents.Items return same collection as underlying itemsSource ?