https://github.com/usausa/sqlbulkloader
SQL Server bulk load library.
https://github.com/usausa/sqlbulkloader
bulk-copy bulk-loader bulkcopy bulkloader csharp dotnet dotnet-core dotnetcore sqlserver
Last synced: 5 days ago
JSON representation
SQL Server bulk load library.
- Host: GitHub
- URL: https://github.com/usausa/sqlbulkloader
- Owner: usausa
- License: mit
- Created: 2021-04-10T04:40:32.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-16T01:06:50.000Z (about 1 month ago)
- Last Synced: 2025-04-16T02:20:02.561Z (about 1 month ago)
- Topics: bulk-copy, bulk-loader, bulkcopy, bulkloader, csharp, dotnet, dotnet-core, dotnetcore, sqlserver
- Language: C#
- Homepage:
- Size: 53.7 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SqlBulkLoader - SqlBulkCopy helper
[](https://www.nuget.org/packages/SqlBulkLoader)
# Usage
```csharp
using System;
using System.Collections.Generic;
using System.Threading.Tasks;using SqlBulkLoader;
public static class Program
{
public static async Task Main()
{
var loader = new SqlBulkLoader(new SqlBulkLoaderConfig
{
ConnectionString = "..."
});await loader.LoadAsync("TargetTable", Query());
}private static IEnumerable Query()
{
...
}
}
```