Hallo,
for example I have two list. Let say if have same IDs in both lists how can i select automatically the object in the Details list according to the object selected in the Sample list from binding source. I know using LINQ i can get the values i want , is there any other way so i can refer to something like CType(ID, Details).Description ?
Public Class Sample1
Public Property ID as Integer
Public Property Item as String
End Class
Public Class Details
Public Property ID as Integer
Public Property Description as String
End Class
Thanks