Hi
[c# linq]
i have 2 datasources, 1 coming from an xml document and 1 coming from an sql server database, both return an IEnumerable<EventsDetails>
is it possible to bind both of these lists to a single repeater?
Hi
[c# linq]
i have 2 datasources, 1 coming from an xml document and 1 coming from an sql server database, both return an IEnumerable<EventsDetails>
is it possible to bind both of these lists to a single repeater?
Create a new list containing both. Or an object implementing IEnumetator which first returns elements from the first, then from the second list.