-
Notifications
You must be signed in to change notification settings - Fork 89
/
BenchmarkService.cs
187 lines (169 loc) · 7.6 KB
/
BenchmarkService.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Columns;
using BenchmarkDotNet.Configs;
using Microsoft.EntityFrameworkCore;
using OptimizeMePlease.Context;
using System;
using System.Collections.Generic;
using System.Linq;
namespace OptimizeMePlease
{
[MemoryDiagnoser]
[HideColumns(BenchmarkDotNet.Columns.Column.Job, BenchmarkDotNet.Columns.Column.RatioSD, BenchmarkDotNet.Columns.Column.StdDev, BenchmarkDotNet.Columns.Column.AllocRatio)]
//[Config(typeof(Config))]
public class BenchmarkService
{
public BenchmarkService()
{
}
//private class Config : ManualConfig
//{
// public Config()
// {
// SummaryStyle = BenchmarkDotNet.Reports.SummaryStyle.Default.WithRatioStyle(RatioStyle.Trend);
// }
//}
/// <summary>
/// Get top 2 Authors (FirstName, LastName, UserName, Email, Age, Country)
/// from country Serbia aged 27, with the highest BooksCount
/// and all his/her books (Book Name/Title and Publishment Year) published before 1900
/// </summary>
/// <returns></returns>
[Benchmark]
public List<AuthorDTO> GetAuthors()
{
using var dbContext = new AppDbContext();
var authors = dbContext.Authors
.Include(x => x.User)
.ThenInclude(x => x.UserRoles)
.ThenInclude(x => x.Role)
.Include(x => x.Books)
.ThenInclude(x => x.Publisher)
.ToList()
.Select(x => new AuthorDTO
{
UserCreated = x.User.Created,
UserEmailConfirmed = x.User.EmailConfirmed,
UserFirstName = x.User.FirstName,
UserLastActivity = x.User.LastActivity,
UserLastName = x.User.LastName,
UserEmail = x.User.Email,
UserName = x.User.UserName,
UserId = x.User.Id,
RoleId = x.User.UserRoles.FirstOrDefault(y => y.UserId == x.UserId).RoleId,
BooksCount = x.BooksCount,
AllBooks = x.Books.Select(y => new BookDto
{
Id = y.Id,
Name = y.Name,
Published = y.Published,
ISBN = y.ISBN,
PublisherName = y.Publisher.Name
}).ToList(),
AuthorAge = x.Age,
AuthorCountry = x.Country,
AuthorNickName = x.NickName,
Id = x.Id
})
.ToList()
.Where(x => x.AuthorCountry == "Serbia" && x.AuthorAge == 27)
.ToList();
var orderedAuthors = authors.OrderByDescending(x => x.BooksCount).ToList().Take(2).ToList();
List<AuthorDTO> finalAuthors = new List<AuthorDTO>();
foreach (var author in orderedAuthors)
{
List<BookDto> books = new List<BookDto>();
var allBooks = author.AllBooks;
foreach (var book in allBooks)
{
if (book.Published.Year < 1900)
{
book.PublishedYear = book.Published.Year;
books.Add(book);
}
}
author.AllBooks = books;
finalAuthors.Add(author);
}
return finalAuthors;
}
//[Benchmark]
//public List<AuthorDTO_Optimized> GetAuthors_Optimized()
//{
// using var dbContext = new AppDbContext();
// var date = new DateTime(1900, 1, 1);
// return dbContext.Authors
// .IncludeOptimized(x => x.Books.Where(b => b.Published < date))
// .AsNoTracking()
// .Where(x => x.Country == "Serbia" && x.Age == 27)
// .OrderByDescending(x => x.BooksCount)
// .Take(2)
// .Select(x => new AuthorDTO_Optimized
// {
// FirstName = x.User.FirstName,
// LastName = x.User.LastName,
// Email = x.User.Email,
// UserName = x.User.UserName,
// Books = x.Books.Select(y => new BookDTO_Optimized
// {
// Title = y.Name,
// PublishedYear = y.Published.Year
// }),
// Age = x.Age,
// Country = x.Country,
// })
// .ToList();
//}
//[Benchmark]
public List<AuthorDTO_OptimizedStruct> GetAuthors_Optimized_Struct()
{
using var dbContext = new AppDbContext();
var date = new DateTime(1900, 1, 1);
return dbContext.Authors
//.IncludeOptimized(x => x.Books)
.Where(x => x.Country == "Serbia" && x.Age == 27)
.OrderByDescending(x => x.BooksCount)
.Select(x => new AuthorDTO_OptimizedStruct
{
FirstName = x.User.FirstName,
LastName = x.User.LastName,
Email = x.User.Email,
UserName = x.User.UserName,
Books = x.Books.Where(b => b.Published.Year < 1900).Select(y => new BookDTO_OptimizedStruct
{
Title = y.Name,
PublishedYear = y.Published.Year
}),
Age = x.Age,
Country = x.Country,
})
.Take(2)
.ToList();
}
//[Benchmark]
public List<AuthorDTO_OptimizedStruct> GetAuthors_Optimized_Struct1()
{
using var dbContext = new AppDbContext();
return dbContext.Authors
.Where(x => x.Country == "Serbia" && x.Age == 27 && x.Books.Any(y => y.Published.Year < 1900))
//.IncludeOptimized(x => x.Books.Where(y => y.Published.Year < 1900))
.OrderByDescending(x => x.BooksCount)
.Select(x => new AuthorDTO_OptimizedStruct
{
FirstName = x.User.FirstName,
LastName = x.User.LastName,
Email = x.User.Email,
UserName = x.User.UserName,
Books = x.Books.Select(y => new BookDTO_OptimizedStruct
{
Title = y.Name,
PublishedYear = y.Published.Year
}),
Age = x.Age,
Country = x.Country,
})
.Take(2)
.ToList();
}
}
}