Skip to content

Commit

Permalink
Updated Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cdemi committed Nov 19, 2014
1 parent f9cc66d commit 6d78ad0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
SimpleSqlBulkCopy
=================

Lets you efficiently bulk load a SQL Server table with data from another source by using System.Data.SqlClient.SqlBulkCopy in a more friendly way
Lets you efficiently bulk load a SQL Server table with data from a Typed List. This uses System.Data.SqlClient.SqlBulkCopy and just wraps it for a more developer-friendly interface

Usage
-----
```
using (var ssbc = new SimpleSqlBulkCopy("ConnectionString"))
{
ssbc.WriteToServer("TableName", IEnumerable<T>);
}
```
where T is an object of the same Properties (and Type of the Database)

0 comments on commit 6d78ad0

Please sign in to comment.