问题标签 [linq-to-excel]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
2129 浏览

.net - 如何使用 EPPlus 生成的 LinqToExcel 读取 Excel 的列名?

我想读取使用 EPPlus 和 LinqToExcel 生成的 excel 文件的列名。这是我到目前为止所做的

0 投票
1 回答
6832 浏览

c# - EPPlus 和 Linq To Excel 查询所有行

使用 EPPlus 和 Linq To Excel 有人知道如何获取所有行的语法吗?

这不是检索 ant 数据。如何使用 Linq-to-Excel 获取 EPPlus 的所有行

0 投票
1 回答
963 浏览

c# - Linq to Excel - 对象必须实现 IConvertible 错误

以下代码显示此错误

对象必须实现 IConvertible

当我在 LINQ 表达式中添加 where 子句来比较DateTime字段时。

我尝试使用Convert.ToDateTime(c.ETC) >= startday但仍然是同样的错误。

的定义BulkMovementItem

0 投票
1 回答
350 浏览

c# - LinqToExcel and currency format (Culture)

I use LinqToExcel in my application for a while now and has been working like a charm.

But I'm facing a problem reading currency strings from Excel.

I can't post images yet, but the value in excel is 9999 formated like 9.999,00 (pt-BR)

Local in my machine LinqToExcel reads this value just fine(9999) and I can convert it to decimal.

But on the IIS server that has a en-US culture it reads this same value as 9,999.00, so when I try to convert is to decimal I get an exception.

Is there a way to set the default culture for LinqToExcel or something like that? Because I don't want to replace the , and . it's just too ugly.

I'm using C# VS2013.

0 投票
0 回答
415 浏览

c# - 使用 LinqToExcel 获取条件满足时的列数据

我正在使用 LinqToExcel 从 excel 文件中获取一些数据,它适用于常见任务,但是当一列扩展到多行时会出现问题。

这是常见任务,获取数据行。

这是常见任务,获取一行数据

但是,当同一记录中的一列扩展到多行时,我无法获得包含所有这些行的单个数据行,而是从“来自”和“到”列中获得几行带有空数据的行。

在此处输入图像描述

这是我目前正在使用的代码:

所以我的问题是,考虑到上面的例子,我怎样才能得到一个单行,其中包括“to”和“from”列中的字符串,以及“items”列中的列表等等。桌子?

0 投票
1 回答
724 浏览

linq-to-excel - LinqToExcel 无法读取所有行

我使用 LinqToExcel 在我的 C# 控制台应用程序中读取 Excel 文件。但是它只读取前 254 行并忽略其余行。如何排除故障?

0 投票
1 回答
1597 浏览

c# - 如何使用 Linq To Excel 将数据导入到 GridView

我想将数据导入gridviewfrom Excel。我已经使用System.Data.OleDbas

如何实现相同的使用LinqToExcel

0 投票
0 回答
170 浏览

c# - LinqToExcel 读取数据时舍入十进制数

我正在使用 LinqToExcel 从 Excel 电子表格中读取数据。但是,当读入带有小数位的数据时,它会四舍五入到小数点后第二位。我该如何阻止这个?

EG excel 数据 = 12.1552456

但是 LinqToExcel 只会读取数据而只会返回 12.16

0 投票
2 回答
112 浏览

c# - 从 Excel 返回数据列表

我在 Excel 中有一个数据,我已经编写了一个返回数据的方法,但我不知道如何在列表中返回它们。这是我的方法:

这是我的课程:

result2 无法返回 LINQ,我不知道如何修复它。

0 投票
3 回答
789 浏览

c# - Visual Studio 2015 LinqToExcel 不起作用

我有一个用 VS2012 编写的 asp.net 应用程序。在移至 VS2015 之前,我一直在使用 LinqToExcel,没有任何问题。这是我的代码:

V入门类

它在 VS2012 上运行良好。当我在 VS2015 中构建它时,出现异常

但是当我在 VS2012 中构建它时,它又可以工作了。可能有什么问题?我不知道。

编辑:在 VS2013 上它也可以工作。