c# 将2个列表绑定到转发器
[c# linq]
我有 2 个数据源,1 个来自 xml 文档,1 个来自 sql server 数据库,两者都返回 IEnumerable
是否可以将这两个列表绑定到单个数据源中继器?
[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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想使用 LINQ,您可能正在寻找类似的内容:
那么
both
就是您的数据源。You're probably looking for something like this, if you want to use LINQ:
Then
both
is your data source.创建一个包含两者的新列表。或者一个实现 IEnumetator 的对象,它首先从第一个列表返回元素,然后从第二个列表返回元素。
Create a new list containing both. Or an object implementing IEnumetator which first returns elements from the first, then from the second list.