- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个 IList<Guid>
,我希望从上下文中找到所有匹配项,然后包括一些相关的表,其中不包括过时的数据。由于数据的大小,我尝试使用 EF Plus IncludeFilter,以避免将所有数据加载到内存并在那里执行过滤。当我调用 ToListAsync()
时出现问题在查询上。 IncludeFilter(据我所知)然后抛出 System.MissingMethodException : Cannot create an instance of an interface
异常(exception)。
项目是在 .NET Core 2.2 中完成的,我使用的是 Z.EntityFramework.Plus.EFCore 2.0.7
示例项目
此示例重现了问题:https://dotnetfiddle.net/MYukHp
数据结构
数据库结构以包含不可变 Guid 的 Facts 表为中心,用于标识每个条目。所有其他表中的条目都链接到此 guid 以绑定(bind)到一个条目。其他表包含 DateTime ValidTo
跟踪变化。不会更新或删除任何条目。相反,在更改时使用 ValidTo = DateTime.MaxValue
创建一个新条目, 正在更新的条目是 ValidTo
设置为 DateTime.Now
.这确保所有更改都保留在历史记录中。
随着时间的推移,绝大多数数据将成为历史数据,因此我们能够在 SQL 查询中过滤掉这些数据至关重要。
事实表的数据结构是这样的:
public class FactModel
{
public Guid FactId { get; set; }
public DateTime ValidFrom { get; set; }
public DateTime ValidTo { get; set; }
// Navigation properties
public IEnumerable<PersonModel> Persons { get; set; }
// Repeat for all other tables
}
所有其他表都继承自 ModelBase,将它们链接到 Fact 表。
public class ModelBase
{
public Guid FactId { get; set; } // Link to the Fact
public FactModel Fact { get; set; } // Navigation property
public DateTime ValidFrom { get; set; }
public DateTime ValidTo { get; set; } // ValidTo == DateTime.MaxValue -> active record
}
Person 和 Patient 的示例表
public class PersonModel : ModelBase
{
public Guid PersonId { get; set; } // Key - A new is created on every update
public string FirstName { get; set; } // data
public string LastName { get; set; } // data
}
public class PatientModel : ModelBase
{
public Guid PatientId { get; set; } // Key - A new is created on every update
public Guid ActiveCompanyId { get; set; } // Data
public int HealthInsuranceGroup { get; set; } // Data
public PatientStatusType Status { get; set; } // Data
}
将参数更改为 IQueryable 会产生一个新错误: System.InvalidCastException : Unable to cast object of type System.Guid' to type 'System.String'
调用顺序
调用顺序相当复杂,但我们从声明调用参数IQueryable<FactModel> facts
开始简化。 .这是通过仅添加来自用户登录的公司的患者来过滤的。然后应用搜索词。最后,在调用 AssignDataToPatientByFactId
之前,将参数转换为仅包含所需 guid 的列表。 .
// Performing a search for an Address
IQueryable<FactModel> facts = null;
facts = _context.Facts.AsNoTracking().Where(p => p.Patients.Any(a => a.ActiveCompanyId == _identificationHandler.Identification.CompanyId));
facts = facts.AsNoTracking().Where(p => p.Addresses.Where(z => z.ValidTo == DateTime.MaxValue).Any(q => q.Street.Any() && q.Street.StartsWith(searchDTO.SearchString)));
return await AssignDataToPatient(facts.Select(x => x.FactId).ToList()), cancel);
public async Task<List<FactModel>> AssignDataToPatientByFactId(IList<Guid> factIds, CancellationToken cancel)
{
return await _context.Facts.Where(x => factIds.Contains(x.FactId))
.IncludeFilter(x => x.Patients.Where(c => c.ValidTo == DateTime.MaxValue))
.IncludeFilter(x => x.Persons.Where(c => c.ValidTo == DateTime.MaxValue))
.IncludeFilter(x => x.Communications.Where(c => c.ValidTo == DateTime.MaxValue))
.IncludeFilter(x => x.Addresses.Where(c => c.ValidTo == DateTime.MaxValue))
.ToListAsync(cancel);
}
所以 AssignDataToPatientByFactId
获取 guid 列表,在 Facts 表中找到所有匹配项,然后添加 ValidTo
所在的其他表中的条目时间戳是最大。因此不应包括所有其他条目。
将代码分成几个语句表明 IncludeFilter 似乎可以正常工作,但调用 ToListAsync 会产生错误。
最佳答案
免责声明:我是项目的所有者Entity Framework Plus
已发布 v2.0.8 版本修复此问题。
问题是因为类 Fact
引起的正在使用 IEnumerable<T>
我们的库尚不支持的属性。
Fiddle 现在按预期工作:https://dotnetfiddle.net/MYukHp
关于c# - 使用 EF Plus IncludeFilter 出现 'Cannot create an instance of an interface' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57956018/
我是一名优秀的程序员,十分优秀!