We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22146e commit b968d20Copy full SHA for b968d20
1 file changed
src/EFCore.Cassandra.Benchmarks/Program.cs
@@ -9,8 +9,18 @@ internal class Program
9
{
10
private static async Task Main(string[] args)
11
12
+#if DEBUG
13
+ var insertData = new InsertData();
14
+ insertData.AddApplicants();
15
+ insertData.BulkInsertApplicants();
16
+ insertData.AddRangeApplicants();
17
+
18
+ var batchedInsertData = new BatchedInsertData();
19
+ await batchedInsertData.BatchedInsertApplicantsAsync();
20
+#else
21
BenchmarkRunner.Run<InsertData>();
22
BenchmarkRunner.Run<BatchedInsertData>();
23
+#endif
24
}
25
26
0 commit comments