Skip to content

Commit 84591f9

Browse files
committed
Update description
1 parent 1502822 commit 84591f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# SQL Bulk Copy & Merge
22

3-
This library aims to make easier specific workflows in .NET that copy table data between SQL Server databases.
3+
This .NET library makes easier specific workflows that copy table data between SQL Server databases.
44

55
SQLBulkCopy is useful to copy between databases, but truncating the destination table each time before copying is not always possible or efficient.
66
An alternative workflow is to use SQLBulkCopy to copy to a temporary table and then run SQL MERGE between the temporary table and target.
77
Some other solutions that do this require extra work defining the table schemas or are dependant on a SQL stored proc.
88

9-
This .NET library has the following methods:
9+
This library has the following methods:
1010

1111
## CopyAndMerge
1212
Uses SQLBulkCopy to copy data from a table or view in the source database to a temporary table in the target database before running SQL MERGE from the temporary table to the destination table.

src/SqlBulkCopyMerge/SqlBulkCopyMerge.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Authors>Steve Kirkegard</Authors>
55
<Product>SqlBulkCopyMerge</Product>
66
<TargetFrameworks>netstandard2.1;net5.0</TargetFrameworks>
7-
<Description>This library aims to make easier and more efficient specific workflows in .NET that copy table data between SQL databases.</Description>
7+
<Description>This .NET library makes easier specific workflows that copy table data between SQL Server databases.</Description>
88
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1010
</PropertyGroup>

0 commit comments

Comments
 (0)