FlatFile icon indicating copy to clipboard operation
FlatFile copied to clipboard

FlatFile is a library to work with flat files

Results 36 FlatFile issues
Sort by recently updated
recently updated
newest added

I realized this is cannot be used in projects that require strong name assemblies. Are you accepting pull requests so I can make one?

HI all is it possible to define the EOL character(s)? Thank you

Hi, I really love this library specifically with the fluent syntax for attribute mapping. Wanted to know if we have any plans for the .NetCore 3.1 support? If there is...

Do you have any plan to move to .net standard? i see an issue (#55 ) with a PR that solves the problem. Do you have any plan to keep...

This pull request implements a series of changes intended to enhance and improve the use of type converters. It partially addresses #68, but does not include line or column numbers....

You mention attributes in this example but it's not clear how to use it: > // If using attribute mapping, pass an array of record types // rather than layout...

Is there a way to use attribute mapping with multiple record types? ### Sample ``` csharp [FixedLengthFile] public abstract class MyDataBase { protected MyDataBase(char lineType) { if (lineType

if I have multiple empty field at the end of a row I get the separator as value: Explained better here: https://stackoverflow.com/questions/52017242/flatfile-library-delimited-layout-wrong-parsing-when-multiple-fields-are-empty I don't know if I miss some attribute...

Using the fluent layout classes for record configuration, it is almost possible to completely decouple record models from the FlatFile library. The only exception is in the case of master/detail...