本文介绍了LINQ SelectMany数据表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

这段代码能用吗?

Hi All,

Will this code work?

BusinessObjects.SelectMany(o => o.GetErrors().Rows.OfType<DataRow>());



其中GetErrors()返回DataTable数据类型.

它会返回IEnumerable< DataRow>吗?

在此先感谢.



where GetErrors() returns a DataTable data type.

Will it return an IEnumerable<DataRow>?

Thanks in advance.

推荐答案


这篇关于LINQ SelectMany数据表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 17:41