Binding Treeview with IEntity and Ilist
Hi all,
I have Treeview,Binding with Entities.Have class with Entities.Inside the Entity I have Properties and also IList.I want to bing Property1 as ParentNode and Corresponding IList<T> as ChildNodes.
Class A:IEntity
{
Public Property1{Get;Set;}
Public Property2{Get;Set;}
Public IList<T> xx{Get;Set;}
}