CreateTable<Robot>(overwrite:false)); }); var newRobots = NoOfRobots.Times(i => //Create 1000 Robots new Robot { Id=i, Name="R2D"+i, CreatedDate=DateTime.UtcNow, CellCount=DateTime.Now.ToUnixTimeMs() % 100000 }); foreach (var newRobot in newRobots) { using (IDbConnection db =...