Hi,
I am in situation where I need to bind multiple types to a single repeater.
Say for example I have 2 types in different namespaces
abc.businessLayer.Type_A [properties - Name(string), Country(string)]
xyz.businessLayer.Type_B [properties - FirstName(string), Location(string)]
Now I need to bind the repeater with the combined results of above 2 type collection with the repeater column names "Full Name" and "Country".
I am planning to add a new Type_C.cs in the application layer and iterate the A and B type collection to assign the properties in C and finally bind the repeater with Type_C.
Can someone let me know if there is better way to go with such kind of issue?