Exemplo n.º 1
0
 private static void FetchSetBenchmark_WarmUp(FetchSetBenchmark b)
 {
     for (var i = 0; i < 100; i++)
     {
         b.Linq();
         b.Compiled();
         b.RawAdoNet();
     }
 }
Exemplo n.º 2
0
 private static void FetchSetBenchmark_Measure(FetchSetBenchmark b)
 {
     b.Linq();
     b.Compiled();
     b.RawAdoNet();
 }