Hi all,
I'm tried to bind a entity to datagrid with a prefetch data, I check the prefetched data and its ok, but I don't no know to put info in column using datapropertyname
here my code:
var orders = new TiquetsCollection();
var prefetchPath = new PrefetchPath(EntityType.TiquetsEntity);
prefetchPath.Add(TiquetsEntity.PrefetchPathCustomer);
rr.GetMulti(TiquetsFields.IdTiquet.Equal(1), prefetchPath);
dgv_orders.DataSource = orders;
dgv_orders.Columns[0].DataPropertyName = IdTiquet;
dgv_orders.Columns[1].DataPropertyName = Customer.Name; //here my problem, the name is not showed on datagridview
Its possible do that without using typedview?
Thanks team!