用实体框架核心查询时的磁盘空间问题

时间:2019-04-09 14:15:17

标签: c# mysql entity-framework-core

嗨,我正在执行以下查询:

Account account = await _ctx.Account.Include(a => a.AccountCloseFriends)
                            .ThenInclude(acf => acf.CloseFriends)
                            .Include(a => a.AccountCloseFriends.Plans)
                            .FirstOrDefaultAsync(a => a.AccountId == model.AccountIdInfluencer);

它运行良好,但是在我多次执行此查询后,出现以下错误:

enter image description here

我没有找到错误所描述的文件夹,并且我有可用的磁盘空间。

我该怎么办?

0 个答案:

没有答案