-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathBulkInsertMultipleTablesBenchmarks.cs
89 lines (74 loc) · 2.24 KB
/
BulkInsertMultipleTablesBenchmarks.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using BenchmarkDotNet.Attributes;
using EntityFrameworkCore.SqlServer.SimpleBulks.Benchmarks.Database;
using EntityFrameworkCore.SqlServer.SimpleBulks.BulkInsert;
namespace EntityFrameworkCore.SqlServer.SimpleBulks.Benchmarks;
[WarmupCount(0)]
[IterationCount(1)]
[InvocationCount(1)]
[MemoryDiagnoser]
public class BulkInsertMultipleTablesBenchmarks
{
private TestDbContext _context;
private List<Customer> _customers;
private List<Contact> _contacts;
[Params(100, 1000, 10_000, 100_000)]
public int RowsCount { get; set; }
[IterationSetup]
public void IterationSetup()
{
_context = new TestDbContext($"Server=127.0.0.1;Database=SimpleBulks.Benchmarks.{Guid.NewGuid()};User Id=sa;Password=sqladmin123!@#;Encrypt=False");
_context.Database.EnsureCreated();
_customers = new List<Customer>(RowsCount);
for (int i = 0; i < RowsCount; i++)
{
var customer = new Customer
{
FirstName = "FirstName " + i,
LastName = "LastName " + i,
Index = i,
};
customer.Contacts = new List<Contact>();
for (int j = 0; j < 5; j++)
{
customer.Contacts.Add(new Contact
{
EmailAddress = $"EmailAddress {i} - {j}",
PhoneNumber = $"PhoneNumber {i} - {j}",
Index = j,
});
}
_customers.Add(customer);
}
_contacts = _customers.SelectMany(x => x.Contacts).ToList();
}
[IterationCleanup]
public void IterationCleanup()
{
_context.Database.EnsureDeleted();
}
[Benchmark]
public void EFCoreInsert()
{
_context.AddRange(_customers);
_context.SaveChanges();
}
[Benchmark]
public void BulkInsert()
{
_context.BulkInsert(_customers, opt =>
{
opt.Timeout = 0;
});
foreach (var customer in _customers)
{
foreach (var contact in customer.Contacts)
{
contact.CustomerId = customer.Id;
}
}
_context.BulkInsert(_contacts, opt =>
{
opt.Timeout = 0;
});
}
}