JetEntityProviderFramework EF6 中的连接池

Connection pooling in JetEntityProviderFramework EF6

刚注意到 https://github.com/bubibubi/EntityFrameworkCore.Jet supports connection pooling. I am currently using https://github.com/bubibubi/JetEntityFrameworkProvider 并且想在 EF6 版本中使用连接池,直到我有时间将应用程序移植到 Core。

我可以为 JetEntityFrameworkProvider 设置连接池吗?如果是这样,如何?如果我打开连接池,有什么需要注意的吗?

实际上你不能。 EF Core 中有一个连接池实现。
在那种情况下,Access 的 ADO .Net 提供程序是在不同的项目中实现的,并且从一开始就已经计划好了。这不是 EF 6 提供程序的情况,每次我发现 Microsoft Access 奇怪的行为时,ADO .Net 提供程序都是逐步编写的。

我不知道你的情况,但我没有使用 EF Core,因为缺少延迟加载实现。阅读积压我认为已经在几天前实施了。