问题标签 [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.
.net - 如何使用 EPPlus 生成的 LinqToExcel 读取 Excel 的列名?
我想读取使用 EPPlus 和 LinqToExcel 生成的 excel 文件的列名。这是我到目前为止所做的
c# - EPPlus 和 Linq To Excel 查询所有行
使用 EPPlus 和 Linq To Excel 有人知道如何获取所有行的语法吗?
这不是检索 ant 数据。如何使用 Linq-to-Excel 获取 EPPlus 的所有行
c# - Linq to Excel - 对象必须实现 IConvertible 错误
以下代码显示此错误
对象必须实现 IConvertible
当我在 LINQ 表达式中添加 where 子句来比较DateTime
字段时。
我尝试使用Convert.ToDateTime(c.ETC) >= startday
但仍然是同样的错误。
的定义BulkMovementItem
:
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.
linq-to-excel - LinqToExcel 无法读取所有行
我使用 LinqToExcel 在我的 C# 控制台应用程序中读取 Excel 文件。但是它只读取前 254 行并忽略其余行。如何排除故障?
c# - 如何使用 Linq To Excel 将数据导入到 GridView
我想将数据导入gridview
from Excel
。我已经使用System.Data.OleDb
as
如何实现相同的使用LinqToExcel
c# - LinqToExcel 读取数据时舍入十进制数
我正在使用 LinqToExcel 从 Excel 电子表格中读取数据。但是,当读入带有小数位的数据时,它会四舍五入到小数点后第二位。我该如何阻止这个?
EG excel 数据 = 12.1552456
但是 LinqToExcel 只会读取数据而只会返回 12.16
c# - 从 Excel 返回数据列表
我在 Excel 中有一个数据,我已经编写了一个返回数据的方法,但我不知道如何在列表中返回它们。这是我的方法:
这是我的课程:
result2 无法返回 LINQ,我不知道如何修复它。
c# - Visual Studio 2015 LinqToExcel 不起作用
我有一个用 VS2012 编写的 asp.net 应用程序。在移至 VS2015 之前,我一直在使用 LinqToExcel,没有任何问题。这是我的代码:
V入门类
它在 VS2012 上运行良好。当我在 VS2015 中构建它时,出现异常
但是当我在 VS2012 中构建它时,它又可以工作了。可能有什么问题?我不知道。
编辑:在 VS2013 上它也可以工作。