Z.EntityFramework.Extensions
3.16.4
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Z.EntityFramework.Extensions --version 3.16.4
NuGet\Install-Package Z.EntityFramework.Extensions -Version 3.16.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Z.EntityFramework.Extensions" Version="3.16.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Z.EntityFramework.Extensions --version 3.16.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Z.EntityFramework.Extensions, 3.16.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Z.EntityFramework.Extensions as a Cake Addin #addin nuget:?package=Z.EntityFramework.Extensions&version=3.16.4 // Install Z.EntityFramework.Extensions as a Cake Tool #tool nuget:?package=Z.EntityFramework.Extensions&version=3.16.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
// Fiddle: https://dotnetfiddle.net/awlJdf
// @nuget: EntityFramework
// @nuget: Z.EntityFramework.Extensions
// Website: https://entityframework-extensions.net/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Data.Entity;
public class Program
{
public static List<BenchmarkResult> BenchmarkResults = new List<BenchmarkResult>();
public static void Main()
{
JustInTime_Compile();
// Generate X entities
var customers = GenerateCustomers(1000);
var inactiveCustomers = customers.Where(x => !x.IsActive).ToList();
var clockInsert = new Stopwatch();
var clockUpdate = new Stopwatch();
var clockDelete = new Stopwatch();
using (var context = new EntityContext())
{
// BulkInsert
{
clockInsert.Start();
context.BulkInsert(customers);
clockInsert.Stop();
BenchmarkResults.Add(new BenchmarkResult() { Action = "BulkInsert", Entities = customers.Count, Performance = clockInsert.ElapsedMilliseconds + " ms" });
}
// BulkUpdate
{
inactiveCustomers.ForEach(x => x.Name = "zzz;" + x.Name);
clockUpdate.Start();
context.BulkUpdate(inactiveCustomers);
clockUpdate.Stop();
BenchmarkResults.Add(new BenchmarkResult() { Action = "BulkUpdate", Entities = inactiveCustomers.Count, Performance = clockUpdate.ElapsedMilliseconds + " ms" });
}
// BulkDelete
{
clockDelete.Start();
context.BulkDelete(inactiveCustomers);
clockDelete.Stop();
BenchmarkResults.Add(new BenchmarkResult() { Action = "BulkDelete", Entities = inactiveCustomers.Count, Performance = clockDelete.ElapsedMilliseconds + " ms" });
}
}
FiddleHelper.WriteTable("EFE - Easy to use, easy to customize!", BenchmarkResults);
}
public static void JustInTime_Compile()
{
var customers = GenerateCustomers(10);
using (var context = new EntityContext())
{
context.BulkInsert(customers);
context.BulkDelete(customers);
}
}
public static List<Customer> GenerateCustomers(int count)
{
var list = new List<Customer>();
for(int i = 0; i < count; i++)
{
list.Add(new Customer() { Name = "Customer_" + i, Description = "Description_" + i, IsActive = i % 2 == 0 });
}
return list;
}
public class EntityContext : DbContext
{
public EntityContext() : base(FiddleHelper.GetConnectionStringSqlServer())
{
}
public DbSet<Customer> Customers { get; set; }
}
public class Customer
{
public int CustomerID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Boolean IsActive { get; set; }
}
public class BenchmarkResult
{
public string Action { get; set; }
public int Entities { get; set; }
public string Performance { get; set; }
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
- EntityFramework (>= 6.0.0)
NuGet packages (9)
Showing the top 5 NuGet packages that depend on Z.EntityFramework.Extensions:
Package | Downloads |
---|---|
Z.EntityFramework.Plus.EF6
Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more |
|
Winq.Provider.Base
Description |
|
DianFengBaseLib.Infrastructure
配合DDD使用 |
|
Witcare.Data
Witcare Data dll |
|
KoreFramework.EntityFramework
KoreFramework.EntityFramework |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on Z.EntityFramework.Extensions:
Repository | Stars |
---|---|
zzzprojects/EntityFramework-Plus
Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more
|
|
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
|
|
zzzprojects/EntityFramework-Effort
Entity Framework Effort is a powerful tool that enables a convenient way to create automated tests for Entity Framework based applications.
|
Version | Downloads | Last updated |
---|---|---|
8.103.6.1 | 282 | 11/6/2024 |
8.103.6 | 6,929 | 10/21/2024 |
8.103.5 | 42,488 | 10/8/2024 |
8.103.4 | 18,193 | 9/23/2024 |
8.103.3 | 34,379 | 8/27/2024 |
8.103.2 | 21,027 | 8/12/2024 |
8.103.1 | 16,521 | 7/22/2024 |
8.103.0 | 107,144 | 6/18/2024 |
8.102.3 | 16,182 | 6/3/2024 |
8.102.2.5 | 25,193 | 5/21/2024 |
8.102.2.4 | 56,763 | 4/30/2024 |
8.102.2.3 | 2,577 | 4/23/2024 |
8.102.2.2 | 29,293 | 4/16/2024 |
8.102.2.1 | 34,908 | 3/26/2024 |
8.102.2 | 43,838 | 3/12/2024 |
8.102.1.1 | 24,952 | 2/27/2024 |
8.102.1 | 38,122 | 2/13/2024 |
8.102.0 | 12,254 | 2/6/2024 |
8.101.2.1 | 33,169 | 1/23/2024 |
8.101.2 | 9,639 | 1/16/2024 |
8.101.1.3 | 30,481 | 12/19/2023 |
8.101.1.2 | 8,344 | 12/12/2023 |
8.101.1.1 | 22,585 | 12/5/2023 |
8.101.1 | 50,092 | 11/28/2023 |
8.101.0 | 66,621 | 11/15/2023 |
7.100.0.5 | 69,642 | 10/24/2023 |
7.100.0.4 | 55,396 | 10/17/2023 |
7.100.0.3 | 26,452 | 10/3/2023 |
7.100.0.2 | 17,094 | 9/26/2023 |
7.100.0.1 | 10,507 | 9/19/2023 |
7.100.0 | 22,134 | 9/12/2023 |
7.22.7 | 7,258 | 9/11/2023 |
7.22.6 | 49,149 | 8/15/2023 |
7.22.4 | 119,687 | 7/11/2023 |
7.22.3 | 81,697 | 6/12/2023 |
7.22.2 | 47,169 | 5/30/2023 |
7.22.0 | 49,180 | 5/16/2023 |
7.21.1 | 29,690 | 5/2/2023 |
7.21.0 | 16,846 | 4/17/2023 |
7.20.2 | 10,285 | 3/28/2023 |
7.20.0 | 64,906 | 3/20/2023 |
7.19.0 | 17,169 | 3/7/2023 |
7.18.5 | 41,666 | 2/21/2023 |
7.18.4 | 46,196 | 2/7/2023 |
7.18.3 | 39,932 | 1/24/2023 |
7.18.2 | 29,061 | 1/17/2023 |
7.18.1 | 106,236 | 12/20/2022 |
7.18.0 | 51,094 | 12/6/2022 |
7.17.2 | 6,126 | 12/5/2022 |
7.17.1 | 33,178 | 11/22/2022 |
7.17.0 | 50,805 | 11/15/2022 |
6.16.1 | 176,030 | 11/1/2022 |
6.16.0 | 25,779 | 10/25/2022 |
6.15.2 | 91,901 | 10/11/2022 |
6.15.1 | 9,945 | 9/26/2022 |
6.15.0 | 82,168 | 9/12/2022 |
6.14.4 | 115,234 | 8/16/2022 |
6.14.3 | 79,659 | 7/19/2022 |
6.14.2 | 147,970 | 6/22/2022 |
6.14.1 | 13,811 | 6/14/2022 |
6.14.0 | 28,312 | 6/7/2022 |
6.13.21 | 28,463 | 5/24/2022 |
6.13.20 | 16,408 | 5/17/2022 |
6.13.19 | 31,489 | 5/10/2022 |
6.13.18 | 101,931 | 4/26/2022 |
6.13.17 | 83,792 | 4/12/2022 |
6.13.16 | 39,260 | 3/29/2022 |
6.13.15 | 71,298 | 3/15/2022 |
6.13.14 | 91,389 | 3/8/2022 |
6.13.13 | 73,310 | 3/1/2022 |
6.13.12 | 19,088 | 2/22/2022 |
6.13.10 | 52,249 | 2/14/2022 |
6.13.9 | 52,665 | 2/8/2022 |
6.13.8 | 8,367 | 2/1/2022 |
6.13.7 | 143,848 | 1/18/2022 |
6.13.6 | 29,968 | 1/11/2022 |
6.13.5 | 164,870 | 12/30/2021 |
6.13.4 | 31,158 | 12/14/2021 |
6.13.3 | 7,010 | 12/7/2021 |
6.13.2 | 139,272 | 11/24/2021 |
6.13.1 | 17,229 | 11/17/2021 |
6.13.0 | 34,397 | 11/9/2021 |
5.2.17 | 59,689 | 11/3/2021 |
5.2.16 | 49,369 | 10/27/2021 |
5.2.15 | 29,766 | 10/20/2021 |
5.2.14 | 18,602 | 10/13/2021 |
5.2.13 | 65,670 | 9/22/2021 |
5.2.12 | 49,149 | 9/15/2021 |
5.2.10 | 26,103 | 9/8/2021 |
5.2.9 | 51,155 | 9/1/2021 |
5.2.8 | 31,058 | 8/25/2021 |
5.2.7 | 61,053 | 8/17/2021 |
5.2.6 | 62,826 | 8/4/2021 |
5.2.5 | 376,123 | 7/28/2021 |
5.2.4 | 127,816 | 7/20/2021 |
5.2.3 | 22,858 | 7/13/2021 |
5.2.2 | 37,287 | 7/5/2021 |
5.2.0 | 31,769 | 6/30/2021 |
5.1.41 | 85,458 | 6/16/2021 |
5.1.40 | 6,532 | 6/14/2021 |
5.1.39 | 64,499 | 6/2/2021 |
5.1.38 | 41,022 | 5/31/2021 |
5.1.37 | 41,671 | 5/19/2021 |
5.1.36 | 47,710 | 5/12/2021 |
5.1.35 | 21,411 | 5/5/2021 |
5.1.34 | 5,995 | 5/3/2021 |
5.1.33 | 44,760 | 4/26/2021 |
5.1.31 | 97,845 | 4/19/2021 |
5.1.30 | 26,374 | 4/7/2021 |
5.1.29 | 73,618 | 3/30/2021 |
5.1.28 | 10,957 | 3/26/2021 |
5.1.27 | 17,003 | 3/25/2021 |
5.1.26 | 4,079 | 3/24/2021 |
5.1.25 | 19,288 | 3/17/2021 |
5.1.24 | 3,009 | 3/15/2021 |
5.1.23 | 58,316 | 3/10/2021 |
5.1.22 | 61,988 | 3/2/2021 |
5.1.21 | 80,020 | 2/23/2021 |
5.1.20 | 43,654 | 2/19/2021 |
5.1.19 | 40,099 | 2/16/2021 |
5.1.18 | 4,761 | 2/11/2021 |
5.1.17 | 24,748 | 2/10/2021 |
5.1.16 | 68,121 | 2/2/2021 |
5.1.15 | 38,153 | 1/27/2021 |
5.1.14 | 9,951 | 1/19/2021 |
5.1.13 | 17,440 | 1/13/2021 |
5.1.12 | 5,349 | 1/10/2021 |
5.1.11 | 24,464 | 1/5/2021 |
5.1.10 | 16,005 | 12/30/2020 |
5.1.9 | 17,917 | 12/16/2020 |
5.1.8 | 88,603 | 12/14/2020 |
5.1.7 | 5,404 | 12/11/2020 |
5.1.6 | 38,000 | 12/8/2020 |
5.1.5 | 12,753 | 12/1/2020 |
5.1.4 | 9,091 | 11/27/2020 |
5.1.3 | 17,593 | 11/23/2020 |
5.1.2 | 20,490 | 11/19/2020 |
5.1.1 | 26,080 | 11/18/2020 |
5.1.0 | 32,229 | 11/11/2020 |
4.0.106 | 34,144 | 11/5/2020 |
4.0.105 | 60,011 | 10/30/2020 |
4.0.104 | 30,850 | 10/26/2020 |
4.0.103 | 16,844 | 10/21/2020 |
4.0.102 | 1,589 | 10/20/2020 |
4.0.101 | 5,943 | 10/15/2020 |
4.0.100 | 28,627 | 10/14/2020 |
4.0.99 | 7,177 | 10/13/2020 |
4.0.98 | 28,814 | 10/11/2020 |
4.0.97 | 21,446 | 10/7/2020 |
4.0.96 | 91,677 | 9/25/2020 |
4.0.95 | 10,612 | 9/21/2020 |
4.0.94 | 74,356 | 9/14/2020 |
4.0.93 | 15,535 | 9/10/2020 |
4.0.92 | 25,529 | 9/8/2020 |
4.0.91 | 65,576 | 8/31/2020 |
4.0.91-beta1 | 813 | 9/15/2020 |
4.0.90 | 9,465 | 8/26/2020 |
4.0.89 | 49,929 | 8/11/2020 |
4.0.88 | 15,818 | 8/6/2020 |
4.0.87 | 13,409 | 8/3/2020 |
4.0.86 | 82,660 | 7/27/2020 |
4.0.85 | 5,337 | 7/23/2020 |
4.0.84 | 7,037 | 7/20/2020 |
4.0.82 | 129,235 | 7/14/2020 |
4.0.81 | 1,447 | 7/13/2020 |
4.0.80 | 8,824 | 7/12/2020 |
4.0.79 | 51,477 | 6/16/2020 |
4.0.78 | 126,724 | 6/13/2020 |
4.0.76 | 75,058 | 6/3/2020 |
4.0.75 | 15,541 | 5/22/2020 |
4.0.74-beta1 | 907 | 5/20/2020 |
4.0.73 | 13,447 | 5/18/2020 |
4.0.72 | 121,880 | 5/14/2020 |
4.0.71 | 7,643 | 5/12/2020 |
4.0.70 | 1,637 | 5/11/2020 |
4.0.69 | 38,841 | 5/5/2020 |
4.0.68 | 71,555 | 4/29/2020 |
4.0.67 | 32,854 | 4/22/2020 |
4.0.66 | 3,924 | 4/22/2020 |
4.0.65 | 4,507 | 4/17/2020 |
4.0.64 | 69,105 | 4/15/2020 |
4.0.63 | 38,977 | 4/8/2020 |
4.0.62 | 2,569 | 4/7/2020 |
4.0.61 | 13,734 | 4/2/2020 |
4.0.60 | 4,175 | 4/1/2020 |
4.0.59 | 10,951 | 3/23/2020 |
4.0.58 | 82,104 | 3/23/2020 |
4.0.57 | 68,511 | 3/16/2020 |
4.0.56 | 12,301 | 3/10/2020 |
4.0.55 | 7,693 | 3/10/2020 |
4.0.54 | 26,089 | 3/3/2020 |
4.0.53 | 36,295 | 2/27/2020 |
4.0.52 | 42,788 | 2/25/2020 |
4.0.51 | 1,934 | 2/24/2020 |
4.0.50 | 7,837 | 2/19/2020 |
4.0.49 | 91,146 | 2/17/2020 |
4.0.48 | 3,078 | 2/17/2020 |
4.0.47 | 39,093 | 2/11/2020 |
4.0.46 | 5,190 | 2/8/2020 |
4.0.45 | 2,629 | 2/7/2020 |
4.0.44 | 4,192 | 2/6/2020 |
4.0.43 | 84,140 | 2/3/2020 |
4.0.42 | 71,339 | 1/31/2020 |
4.0.40 | 6,523 | 1/29/2020 |
4.0.39 | 79,512 | 1/28/2020 |
4.0.35 | 50,394 | 1/9/2020 |
4.0.34 | 51,060 | 12/29/2019 |
4.0.33 | 1,312 | 12/29/2019 |
4.0.30 | 87,417 | 12/16/2019 |
4.0.29 | 2,114 | 12/13/2019 |
4.0.28 | 1,247 | 12/13/2019 |
4.0.27 | 1,358 | 12/13/2019 |
4.0.24 | 87,179 | 12/4/2019 |
4.0.23 | 1,285 | 12/4/2019 |
4.0.22 | 1,431 | 12/4/2019 |
4.0.21 | 11,059 | 12/3/2019 |
4.0.20 | 81,718 | 11/21/2019 |
4.0.19 | 4,643 | 11/20/2019 |
4.0.18 | 1,271 | 11/20/2019 |
4.0.13 | 4,474 | 11/14/2019 |
4.0.12 | 80,807 | 10/30/2019 |
4.0.11 | 269,433 | 10/23/2019 |
4.0.10 | 5,993 | 10/21/2019 |
4.0.9 | 14,229 | 10/10/2019 |
4.0.7 | 35,690 | 10/8/2019 |
4.0.6 | 10,851 | 10/1/2019 |
4.0.5 | 2,860 | 9/27/2019 |
4.0.4 | 1,292 | 9/26/2019 |
4.0.3 | 13,766 | 9/25/2019 |
4.0.2 | 3,599 | 9/23/2019 |
4.0.1 | 2,930 | 9/21/2019 |
4.0.0 | 1,397 | 9/20/2019 |
4.0.0-beta1 | 339 | 9/17/2019 |
3.22.7 | 74,957 | 9/11/2019 |
3.22.6 | 935 | 9/10/2019 |
3.22.5 | 9,713 | 9/5/2019 |
3.22.4 | 9,089 | 8/30/2019 |
3.22.3 | 11,006 | 8/26/2019 |
3.22.2 | 4,501 | 8/24/2019 |
3.22.1 | 8,159 | 8/19/2019 |
3.22.0 | 662 | 8/17/2019 |
3.21.13 | 3,588 | 8/16/2019 |
3.21.12 | 5,218 | 8/15/2019 |
3.21.11 | 7,655 | 8/5/2019 |
3.21.10 | 29,291 | 7/31/2019 |
3.21.9 | 7,600 | 7/28/2019 |
3.21.8 | 2,862 | 7/24/2019 |
3.21.7 | 35,363 | 7/17/2019 |
3.21.6 | 1,608 | 7/16/2019 |
3.21.5 | 6,677 | 7/11/2019 |
3.21.4 | 7,149 | 7/9/2019 |
3.21.3 | 1,858 | 7/8/2019 |
3.21.2 | 10,821 | 6/29/2019 |
3.21.1 | 1,713 | 6/28/2019 |
3.21.0 | 20,257 | 6/26/2019 |
3.20.7 | 3,610 | 6/25/2019 |
3.20.6 | 4,233 | 6/20/2019 |
3.20.5 | 2,081 | 6/18/2019 |
3.20.4 | 2,059 | 6/18/2019 |
3.20.2 | 1,488 | 6/17/2019 |
3.20.1 | 2,341 | 6/14/2019 |
3.20.0 | 3,330 | 6/13/2019 |
3.19.0 | 25,379 | 6/4/2019 |
3.18.6 | 2,494 | 6/4/2019 |
3.18.5 | 35,882 | 5/30/2019 |
3.18.4 | 6,523 | 5/28/2019 |
3.18.3 | 11,348 | 5/14/2019 |
3.18.2 | 1,566 | 5/14/2019 |
3.18.1 | 18,655 | 5/9/2019 |
3.18.0 | 15,771 | 5/7/2019 |
3.17.8 | 28,067 | 4/30/2019 |
3.17.7 | 3,715 | 4/25/2019 |
3.17.6 | 14,233 | 4/18/2019 |
3.17.5 | 37,114 | 4/16/2019 |
3.17.4 | 6,341 | 4/11/2019 |
3.17.3 | 24,747 | 4/8/2019 |
3.17.2 | 5,195 | 4/3/2019 |
3.17.1 | 18,878 | 3/30/2019 |
3.17.0 | 1,913 | 3/30/2019 |
3.16.46 | 10,187 | 3/28/2019 |
3.16.45 | 2,766 | 3/28/2019 |
3.16.44 | 12,487 | 3/27/2019 |
3.16.43 | 2,571 | 3/23/2019 |
3.16.42 | 9,339 | 3/19/2019 |
3.16.41 | 2,601 | 3/19/2019 |
3.16.40 | 4,134 | 3/15/2019 |
3.16.39 | 1,534 | 3/15/2019 |
3.16.38 | 1,700 | 3/15/2019 |
3.16.37 | 2,911 | 3/13/2019 |
3.16.36 | 1,481 | 3/12/2019 |
3.16.35 | 2,477 | 3/12/2019 |
3.16.34 | 1,591 | 3/12/2019 |
3.16.33 | 12,158 | 3/8/2019 |
3.16.32 | 2,114 | 3/8/2019 |
3.16.31 | 7,487 | 3/4/2019 |
3.16.30 | 26,540 | 3/1/2019 |
3.16.29 | 5,277 | 2/28/2019 |
3.16.28 | 3,424 | 2/27/2019 |
3.16.27 | 3,795 | 2/25/2019 |
3.16.26 | 1,723 | 2/24/2019 |
3.16.25 | 5,273 | 2/21/2019 |
3.16.24 | 41,932 | 2/12/2019 |
3.16.23 | 41,322 | 1/30/2019 |
3.16.22 | 29,757 | 1/18/2019 |
3.16.21 | 21,036 | 1/15/2019 |
3.16.20 | 2,190 | 1/14/2019 |
3.16.19 | 14,645 | 1/8/2019 |
3.16.18 | 14,882 | 12/30/2018 |
3.16.17 | 7,692 | 12/20/2018 |
3.16.16 | 24,123 | 12/15/2018 |
3.16.15 | 43,020 | 12/7/2018 |
3.16.14 | 14,938 | 11/29/2018 |
3.16.13 | 2,585 | 11/28/2018 |
3.16.12 | 7,683 | 11/20/2018 |
3.16.11 | 13,272 | 11/9/2018 |
3.16.10 | 3,182 | 11/6/2018 |
3.16.9 | 19,491 | 10/30/2018 |
3.16.8 | 2,093 | 10/28/2018 |
3.16.7 | 21,171 | 10/23/2018 |
3.16.6 | 1,762 | 10/23/2018 |
3.16.5 | 28,198 | 10/16/2018 |
3.16.4 | 1,981 | 10/15/2018 |
3.16.3 | 9,298 | 10/8/2018 |
3.16.2 | 65,424 | 9/29/2018 |
3.16.1 | 6,621 | 9/27/2018 |
3.16.0 | 12,075 | 9/13/2018 |
3.15.22 | 5,252 | 9/12/2018 |
3.15.21 | 2,496 | 9/11/2018 |
3.15.20 | 26,514 | 9/1/2018 |
3.15.19 | 3,446 | 8/30/2018 |
3.15.17 | 100,701 | 8/2/2018 |
3.15.16 | 1,898 | 8/2/2018 |
3.15.15 | 5,874 | 7/31/2018 |
3.15.14 | 2,196 | 7/31/2018 |
3.15.12 | 10,594 | 7/25/2018 |
3.15.11 | 2,055 | 7/25/2018 |
3.15.10 | 2,076 | 7/25/2018 |
3.15.9 | 4,300 | 7/20/2018 |
3.15.8 | 6,691 | 7/19/2018 |
3.15.7 | 1,827 | 7/19/2018 |
3.15.6 | 8,956 | 7/16/2018 |
3.15.5 | 11,175 | 7/8/2018 |
3.15.4 | 34,248 | 6/29/2018 |
3.15.3 | 23,571 | 6/21/2018 |
3.15.2 | 2,497 | 6/20/2018 |
3.15.1 | 3,407 | 6/19/2018 |
3.15.0 | 16,394 | 6/12/2018 |
3.14.33 | 11,751 | 6/5/2018 |
3.14.32 | 14,564 | 6/1/2018 |
3.14.31 | 2,660 | 5/31/2018 |
3.14.30 | 2,146 | 5/30/2018 |
3.14.29 | 8,960 | 5/27/2018 |
3.14.28 | 42,386 | 5/25/2018 |
3.14.27 | 3,710 | 5/22/2018 |
3.14.26 | 11,729 | 5/9/2018 |
3.14.25 | 13,472 | 5/1/2018 |
3.14.24 | 15,931 | 4/23/2018 |
3.14.23 | 9,914 | 4/17/2018 |
3.14.22 | 5,325 | 4/16/2018 |
3.14.21 | 2,330 | 4/13/2018 |
3.14.20 | 2,264 | 4/11/2018 |
3.14.19 | 2,195 | 4/11/2018 |
3.14.18 | 11,264 | 4/7/2018 |
3.14.17 | 11,574 | 3/30/2018 |
3.14.16 | 2,291 | 3/29/2018 |
3.14.14 | 4,585 | 3/27/2018 |
3.14.13 | 2,980 | 3/25/2018 |
3.14.12 | 42,732 | 3/5/2018 |
3.14.11 | 5,692 | 2/28/2018 |
3.14.10 | 3,959 | 2/27/2018 |
3.14.9 | 3,418 | 2/22/2018 |
3.14.8 | 36,515 | 2/14/2018 |
3.14.7 | 63,407 | 1/31/2018 |
3.14.5 | 53,780 | 1/3/2018 |
3.14.4 | 6,657 | 12/28/2017 |
3.14.3 | 5,430 | 12/19/2017 |
3.14.2 | 2,139 | 12/19/2017 |
3.14.1 | 3,118 | 12/14/2017 |
3.14.0 | 29,650 | 11/30/2017 |
3.13.16 | 4,501 | 11/27/2017 |
3.13.14 | 2,822 | 11/27/2017 |
3.13.13 | 10,744 | 11/20/2017 |
3.13.12 | 22,822 | 11/9/2017 |
3.13.11 | 24,331 | 11/7/2017 |
3.13.10 | 7,269 | 11/2/2017 |
3.13.9 | 19,084 | 10/30/2017 |
3.13.8 | 2,906 | 10/26/2017 |
3.13.7 | 1,916 | 10/26/2017 |
3.13.6 | 12,369 | 10/22/2017 |
3.13.5 | 20,720 | 10/16/2017 |
3.13.4 | 2,659 | 10/13/2017 |
3.13.3 | 60,641 | 10/4/2017 |
3.13.2 | 23,793 | 9/30/2017 |
3.13.1 | 18,962 | 9/27/2017 |
3.13.0 | 24,302 | 9/25/2017 |
3.12.27 | 14,207 | 9/18/2017 |
3.12.26 | 4,201 | 9/12/2017 |
3.12.25 | 1,935 | 9/12/2017 |
3.12.24 | 11,763 | 9/6/2017 |
3.12.23 | 47,231 | 8/31/2017 |
3.12.22 | 2,430 | 8/31/2017 |
3.12.21 | 2,008 | 8/30/2017 |
3.12.20 | 13,747 | 8/28/2017 |
3.12.19 | 8,584 | 8/15/2017 |
3.12.18 | 7,384 | 8/11/2017 |
3.12.17 | 3,539 | 8/6/2017 |
3.12.16 | 2,837 | 8/3/2017 |
3.12.15 | 53,246 | 7/25/2017 |
3.12.14 | 20,683 | 7/12/2017 |
3.12.13 | 10,830 | 7/4/2017 |
3.12.12 | 1,938 | 7/4/2017 |
3.12.11 | 2,471 | 7/3/2017 |
3.12.10 | 3,309 | 7/2/2017 |
3.12.9 | 14,277 | 6/29/2017 |
3.11.20 | 11,970 | 4/30/2017 |