public void Check05ListEfDirectOk() { using (var db = new SampleWebAppDb()) { //SETUP var timer = new Stopwatch(); timer.Start(); //ATTEMPT db.ListEfDirect<Post>(0); timer.Stop(); //VERIFY Console.WriteLine("Ef operation took {0} ms",timer.ElapsedMilliseconds); } }
public void Check05ListEfDirectOk() { using (var db = new SampleWebAppDb()) { //SETUP var snap = new DbSnapShot(db); //ATTEMPT db.ListEfDirect<Post>(0); //VERIFY } }