The context cannot be used while the model is being created. This exception may be thrown if the context is used inside the OnModelCreating method or if the same context instance is accessed by multiple threads concurrently. Note that instance members of DbContext and related classes are not guaranteed to be thread safe.
.net 4.5 访问数据库有时会错,大部分情况正常,但有时会报这个错,
DbContext 实例生命周期的问题
简单的翻译一下,这说的是
请注意 DbContext 和相关的类是不承诺线程安全的。
所以,别指望是Framework 的Bug了,是你的代码问题。
正因为是线程造成的问题,所以时有时无。建议仔细认真研究一下 Entity Framework 相关教程。
你可以试试多个并发操作一个连接,你看看代码你会怎么写出来。
共用一个上下文