Six seconds warmup time for the first entity framework 6 nonquery

前端 未结 4 1704
夕颜
夕颜 2021-01-05 23:51

From my integration test:

// Act
Stopwatch w = new Stopwatch();
w.Start();
userService.Create(userDTO);
w.Stop();


public void Create(UserDTO userDTO)
{
            


        
4条回答
  •  温柔的废话
    2021-01-06 00:35

    Have you tried EF 6.0.2? It addresses several performance issues and may help. Find more details (including a list of bugs fixed in this release) here

提交回复
热议问题