使用 FileHelper 类存储 RecordString

发布于 2024-10-14 10:21:40 字数 445 浏览 1 评论 0原文

我们在项目中使用 FileHelpers 2.0。我已定义记录并正确导入数据。获取通用对象数组后:

var engine = new FileHelperEngine<UserRecord>();
engine.ErrorManager.ErrorMode = ErrorMode.SaveAndContinue;
UserRecord[] importedUsers = engine.ReadFile(_filepath);

获取由于格式问题而出错的记录后,我将迭代 importedUsers 数组并进行验证以查看导入的信息是否有效。

如果数据无效,我希望能够从文件中记录原始记录中的整个字符串。

当 FileHelperEngine 读取每条记录时,有没有办法将整个“RecordString”存储在 UserRecord 类中?

We are using FileHelpers 2.0 in our project. I have my record defined and have the data being imported correctly. After getting my array of generic objects:

var engine = new FileHelperEngine<UserRecord>();
engine.ErrorManager.ErrorMode = ErrorMode.SaveAndContinue;
UserRecord[] importedUsers = engine.ReadFile(_filepath);

After getting the records that errored due to formatting issues, I am iterating through the importedUsers array and doing validation to see if the information being imported is valid.

If the data is not valid, I want to be able to log the entire string from the original record from my file.

Is there a way to store the entire "RecordString" in the UserRecord class when the FileHelperEngine reads each of the records?

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

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

发布评论

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

评论(1

甜柠檬 2024-10-21 10:21:40

我们在处理 BeforeRead 事件并将其存储在以这种方式标记的字段 mOriginalString 中时经常这样做:

[FieldNotInFile]
公共字符串 mOriginalString;

您必须使用此处的最新版本的库:

http://teamcity.codebetter.com/repository/download/bt65/20313:id/FileHelpers_2.9.9_ReleaseBuild.zip

干杯

We do that often at work handling the BeforeRead event and storing it in a field mOriginalString that is marked this way:

[FieldNotInFile]
public string mOriginalString;

You must use the last version of the library from here:

http://teamcity.codebetter.com/repository/download/bt65/20313:id/FileHelpers_2.9.9_ReleaseBuild.zip

Cheers

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