如何将过滤后的ListCollectionView转换为dataview
如何将过滤后的 ListCollectionView 转换为数据视图?
How can I convert a filtered ListCollectionView to a dataview?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将过滤后的 ListCollectionView 转换为数据视图?
How can I convert a filtered ListCollectionView to a dataview?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您的意思是 System.Data.DataView 吗?如果是这样,您首先必须创建一个 DataTable 并填充它,这意味着您还需要一种将列表中的每个项目转换为 DataRow 的方法。
如果这不是您的意思,您需要提供问题的更多详细信息。
Do you mean a
System.Data.DataView
? If so, you first have to create aDataTable
and populate it, which means that you also need a way of converting each item in your list into aDataRow
.If this isn't what you mean, you need to provide a lot more detail with your question.