linq to excel exception IErrorInfo.GetDescription

本文关键字:IErrorInfo GetDescription exception excel to linq | 更新日期: 2023-09-27 18:17:15

这是我的代码

    var data = new LinqToExcel.ExcelQueryFactory();
                data.FileName = @"FRM_DTA.xlsx";                
                var result = from x in data.Worksheet<ExcelFileDefinition>()
                             select x;
Console.WriteLine(result.Count());

我得到了这个异常:

OleDbException was unhandled
IErrorInfo.GetDescription failed with E_FAIL(0x80004005).

在控制台上。写声明。

当我删除控制台。write行时,我没有得到任何异常

linq to excel exception IErrorInfo.GetDescription

问题是文件名错误。