FastACH 0.2.4.76
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package FastACH --version 0.2.4.76
NuGet\Install-Package FastACH -Version 0.2.4.76
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FastACH" Version="0.2.4.76" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FastACH --version 0.2.4.76
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FastACH, 0.2.4.76"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FastACH as a Cake Addin #addin nuget:?package=FastACH&version=0.2.4.76 // Install FastACH as a Cake Tool #tool nuget:?package=FastACH&version=0.2.4.76
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FastACH
.NET library for reading and writing ACH files
Continuous integration
Branch | Build status |
---|---|
master |
Installation
.NET 7.0
PM> Install-Package FastACH
Add namespace to the program
using FastACH;
Usage
Reading ACH file
var reader = new AchFileReader();
var achFile = await reader.Read("ACH.txt");
var achFileWriter = new AchFileWriter();
achFileWriter.WriteToConsole(achFile); // Output to console
Writing ACH file
var achFile = new AchFile()
{
OneRecord = new FileHeaderRecord()
{
ImmediateDestination = "123456789",
ImmediateOrigin = "123456789",
FileCreationDate = DateOnly.FromDateTime(DateTime.Now),
FileCreationTime = TimeOnly.FromDateTime(DateTime.Now),
FileIdModifier = 'A',
ImmediateDestinationName = "PNC Bank",
ImmediateOriginName = "Microsoft Inc.",
ReferenceCode = "00000000"
},
BatchRecordList =
{
new BatchRecord()
{
BatchHeader = new BatchHeaderRecord()
{
ServiceClassCode = 200,
CompanyName = "companyName",
CompanyDiscretionaryData = "companyDiscretionary",
CompanyId = "companyID",
CompanyEntryDescription = "EntryDescr",
CompanyDescriptiveDate = new DateOnly(2011, 02, 03),
EffectiveEntryDate = new DateOnly(2011, 01, 02),
OriginatingDFIID = "DFINumber"
},
TransactionDetailsList =
{
new TransactionRecord
{
EntryDetail = new EntryDetailRecord()
{
TransactionCode = 22,
ReceivingDFIID = 12345678,
CheckDigit = '9',
DFIAccountNumber = "1313131313",
Amount = 22M,
ReceiverIdentificationNumber = "ID Number",
ReceiverName = "ID Name",
DiscretionaryData = "Desc Data",
AddendaRecordIndicator = true,
},
Addenda = new AddendaRecord()
{
AddendaInformation = "Monthly bill"
}
},
new TransactionRecord()
{
EntryDetail = new EntryDetailRecord()
{
TransactionCode = 27,
ReceivingDFIID = 12345678,
CheckDigit = '9',
DFIAccountNumber = "1313131313",
Amount = 27M,
ReceiverIdentificationNumber = "ID Number",
ReceiverName = "ID Name",
DiscretionaryData = "Desc Data",
AddendaRecordIndicator = false,
},
Addenda = null
}
}
}
}
};
var writer = new AchFileWriter();
await writer.WriteToFile(achFile, "ACH.txt");
Perfomance results
I created a benchmark to compare reading performance between FastACH and very popular ChoETL.Nacha library.
Method | NumberOfEntries | Mean | Error | Gen0 | Gen1 | Gen2 | Allocated |
---|---|---|---|---|---|---|---|
FastACH | 1000 | 7.641 ms | NA | - | - | - | 909.02 KB |
ChoetlNacha | 1000 | 734.524 ms | NA | 287000.0000 | 282000.0000 | 282000.0000 | 3764876.44 KB |
FastACH | 10000 | 17.351 ms | NA | - | - | - | 8888.17 KB |
ChoetlNacha | 10000 | 3,981.774 ms | NA | 1881000.0000 | 1824000.0000 | 1824000.0000 | 37550128.94 KB |
FastACH | 100000 | 148.096 ms | NA | 7000.0000 | 6000.0000 | 2000.0000 | 88723.47 KB |
ChoetlNacha | 100000 | 35,719.891 ms | NA | 21667000.0000 | 21090000.0000 | 21090000.0000 | 375460385.66 KB |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.3.5.93 | 70 | 10/22/2024 |
0.3.5.92 | 234 | 10/21/2024 |
0.3.4.90 | 131 | 10/18/2024 |
0.3.4.89 | 124 | 10/18/2024 |
0.3.3.88 | 125 | 6/28/2024 |
0.3.3.87 | 551 | 6/27/2024 |
0.3.2.86 | 108 | 6/27/2024 |
0.3.1.85 | 99 | 6/27/2024 |
0.3.0.84 | 110 | 6/27/2024 |
0.2.6.83 | 178 | 6/5/2024 |
0.2.5.82 | 100 | 6/5/2024 |
0.2.5.81 | 101 | 6/5/2024 |
0.2.5.80 | 107 | 6/4/2024 |
0.2.5.79 | 111 | 6/4/2024 |
0.2.5.78 | 94 | 6/4/2024 |
0.2.4.77 | 103 | 6/4/2024 |
0.2.4.76 | 103 | 6/4/2024 |
0.2.3.75 | 103 | 6/4/2024 |
0.2.3.74 | 105 | 6/4/2024 |
0.2.2.73 | 102 | 6/4/2024 |
0.2.1.72 | 107 | 6/4/2024 |
0.2.1.71 | 92 | 5/31/2024 |
0.2.0.70 | 94 | 5/31/2024 |
0.1.11.69 | 98 | 5/31/2024 |
0.1.10.68 | 269 | 4/15/2024 |
0.1.9.67 | 125 | 2/1/2024 |
0.1.8.66 | 510 | 2/1/2024 |
0.1.7.65 | 108 | 2/1/2024 |
0.1.6.64 | 107 | 2/1/2024 |
0.1.5.63 | 101 | 2/1/2024 |
0.1.4.62 | 109 | 1/31/2024 |
0.1.3.61 | 98 | 1/31/2024 |
0.1.2.60 | 92 | 1/31/2024 |
0.1.1.59 | 94 | 1/31/2024 |
0.1.1.58 | 96 | 1/31/2024 |
0.1.0.57 | 98 | 1/31/2024 |
0.0.12.56 | 108 | 1/25/2024 |
0.0.11.55 | 102 | 1/24/2024 |
0.0.10.53 | 96 | 1/24/2024 |
0.0.10.52 | 106 | 1/23/2024 |
0.0.9.51 | 99 | 1/23/2024 |
0.0.8.50 | 100 | 1/23/2024 |
0.0.8.49 | 101 | 1/23/2024 |
0.0.8.48 | 88 | 1/23/2024 |
0.0.7.47 | 110 | 1/22/2024 |
0.0.6.46 | 101 | 1/22/2024 |
0.0.6 | 112 | 1/22/2024 |
0.0.5 | 114 | 1/18/2024 |
0.0.4 | 97 | 1/18/2024 |
0.0.3 | 111 | 1/18/2024 |
0.0.2 | 110 | 1/16/2024 |
0.0.1.1 | 119 | 1/8/2024 |
0.0.1 | 112 | 1/8/2024 |