Exemple #1
0
 protected virtual void testSingleRowInsert() => doTest("single row insert",
                                                        () =>
 {
     var cnn = _provider.Rent();
     _datas.ForEach(x => cnn.Execute($"insert into animal()values()"));
 },
                                                        () =>
 {
     _datas.ForEach(x => _excutor.Insert <Animal>(x));
 },
                                                        true
                                                        );