Baobab wrote:
I would really appreciate a small exemple, illustrating this complex databinding...
Complex databinding is the term for binding to a grid. Simple databinding is the term for binding to a textbox' property for example
These are the terms used by Microsoft to distinguish the 2.
Simply do:
EntityCollection col = new EntityCollection(new CustomerEntityFactory());
col.Add(myCustomerToBind);
myGrid.DataSource = col;