gpt4 book ai didi

c# - 为什么 Entity Framework 6.x 不缓存结果?

转载 作者:IT王子 更新时间:2023-10-29 03:57:58 24 4
gpt4 key购买 nike

也许我误解了 DbContextDbSet 做的缓存,但我的印象是有一些缓存会继续。当我运行以下代码时,我看到了意想不到的行为:

var ctx = CreateAContext();
var sampleEntityId = ctx.SampleEntities.Select(i => i.Id)
.Single(i => i == 3); //Calls DB as expected
var cachedEntityId = ctx.SampleEntities.Select(i => i.Id)
.Single(i => i == 3); //Calls DB unexpectedly

这是怎么回事?我认为您从 DbSet 获得的部分内容是它会在查询数据库之前首先检查本地缓存以查看该对象是否存在。我在这里缺少某种配置选项吗?

最佳答案

什么 @emcas88 is trying to say是当您在 DbSet 上使用 .Find 方法时,EF 只会检查缓存。

使用 .Single.First.Where 等不会缓存结果,除非您使用二级缓存。

关于c# - 为什么 Entity Framework 6.x 不缓存结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21707970/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com