DapperLike.SqlBulkCopy
0.1.7
dotnet add package DapperLike.SqlBulkCopy --version 0.1.7
NuGet\Install-Package DapperLike.SqlBulkCopy -Version 0.1.7
<PackageReference Include="DapperLike.SqlBulkCopy" Version="0.1.7" />
paket add DapperLike.SqlBulkCopy --version 0.1.7
#r "nuget: DapperLike.SqlBulkCopy, 0.1.7"
// Install DapperLike.SqlBulkCopy as a Cake Addin #addin nuget:?package=DapperLike.SqlBulkCopy&version=0.1.7 // Install DapperLike.SqlBulkCopy as a Cake Tool #tool nuget:?package=DapperLike.SqlBulkCopy&version=0.1.7
SqlBulkCopy wrapper with Dapper-like API
This library wraps SqlBulkCopy class with Dapper-like API. It provides extension methods for IDbConnection
(just like Dapper do), but will only work for SqlConnection
(for obvious reasons).
Usage Example
Table
CREATE TABLE [User] (
Id int PRIMARY KEY IDENTITY,
FirstName nvarchar(250),
LastName nvarchar(250),
Age int,
Gender bit
)
POCO
public class User
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int Age { get; set; }
public bool Gender { get; set; }
}
Code
IEnumerable<User> users = GetUsers();
connection.BulkInsert(users);
All properties will be automatically mapped to table columns as well as the type name will be mapped to table name.
Let's check:
// Using Dapper to Query users:
IEnumerable<User> inserted = connection.Query<User>("SELECT * FROM [User]");
// Assert
Assert.IsTrue(users.SequenceEqual(inserted, new UserComparer())); // true
Simple data to single column
List<byte[]> blobs = GetBinaryData();
connection.BulkInsert(blobs, tableName: "dbo.Data", columnName: "Blob");
Table and column names must be specified explicitly since they cannot be inferred from type/prop names.
Anonymous types
IEnumerable<DomainObject> domainObjects = GetData();
var dto = domainObjects
.Select(obj => new
{
Foo = obj.Prop1,
Bar = obj.Prop2.Normalize(),
Baz = ConvertToBaz(obj.Prop3)
});
connection.BulkInsert(dto, tableName: "FooBar");
Column names can be inferred from anonymous type props, but table name from type name cannot, so again it must be specified explicitly.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net451 is compatible. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5.1
- No dependencies.
-
.NETStandard 2.0
- System.ComponentModel.Annotations (>= 4.5.0)
- System.Data.SqlClient (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.