选择接受空值的 Excel 文件的所有行的 linQ

发布于 2024-12-12 03:46:54 字数 1102 浏览 0 评论 0原文

使用 LinQ 和 openXML 读取 excel 2007 工作正常:

IEnumerable<String> textValues =
                                    from cell in row.Descendants<Cell>()
                                    where cell.CellValue != null
                                    select
                                        (cell.DataType != null
                                        && cell.DataType.HasValue
                                        && cell.DataType == CellValues.SharedString
                                        ? sharedStrings.ChildElements[
                                        int.Parse(cell.CellValue.InnerText)].InnerText
                                        : cell.CellValue.InnerText)
                                    ;

但是,如果我的一个单元格为空(空白)。然后它们被排除在 textValues 中。如何更改查询以选择包含空白值的所有单元格,我已经尝试过此查询:

from cell in row.Descendants<Cell>()
select cell.CellValue.ToString();

但我收到此错误:

Object reference not set to an instance of an object.

选择查询应该如何?

提前致谢。

It is working fine for me to read excel 2007 using LinQ and openXML:

IEnumerable<String> textValues =
                                    from cell in row.Descendants<Cell>()
                                    where cell.CellValue != null
                                    select
                                        (cell.DataType != null
                                        && cell.DataType.HasValue
                                        && cell.DataType == CellValues.SharedString
                                        ? sharedStrings.ChildElements[
                                        int.Parse(cell.CellValue.InnerText)].InnerText
                                        : cell.CellValue.InnerText)
                                    ;

However, if one of my cells are null (blank). Then they are excluded in the textValues. How can I change the query in order to select all cells included blank values, I already tried this query:

from cell in row.Descendants<Cell>()
select cell.CellValue.ToString();

but I got this error:

Object reference not set to an instance of an object.

How should the select query to be?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他夏了夏天 2024-12-19 03:46:55

尝试:

from cell in row.Descendants<Cell>()
select Convert.ToString(cell.CellValue);

cell.CellValuenull,并且在对其调用ToString() 时会出现异常。

Try:

from cell in row.Descendants<Cell>()
select Convert.ToString(cell.CellValue);

cell.CellValue is null and you get the exception when calling ToString() on it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文