首页 > 解决方案 > 使用实体框架核心查询时磁盘空间问题

问题描述

您好我正在执行这个查询:

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

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

在此处输入图像描述

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

我能做些什么 ?

标签: c#mysqlentity-framework-core

解决方案


推荐阅读