掌握实体框架中的嵌套属性检索
实体框架的Include()
方法简化了相关实体的预先加载。 然而,获取深层嵌套的属性需要更复杂的方法。
挑战:部分物体水合
考虑以下场景:您正在检索 ApplicationServers
并需要完全填充的 ApplicationsWithOverrideGroup
属性,包括其嵌套的 Application
和 CustomVariableGroup
属性。 一个简单的 Include()
调用可能会失败:
<code class="language-csharp">public IEnumerable<applicationserver> GetAll() { return this.Database.ApplicationServers .Include(x => x.ApplicationsWithOverrideGroup) ... .ToList(); }</applicationserver></code>
这仅加载 Enabled
的 ApplicationWithOverrideVariableGroup
属性,而 Application
和 CustomVariableGroup
未填充。
解决方案:高效嵌套加载
要解决此问题,请利用嵌套 Include()
调用 (EF6) 或 ThenInclude()
方法 (EF Core):
实体框架 6:
使用带有 lambda 表达式的 Select()
方法来包含嵌套属性:
<code class="language-csharp">query.Include(x => x.Collection.Select(y => y.Property))</code>
实体框架核心:
利用 ThenInclude()
方法获得更干净、更具可读性的解决方案:
<code class="language-csharp">query.Include(x => x.Collection) .ThenInclude(x => x.Property);</code>
这些技术确保完整的对象水合作用,在检索的实体中提供所有必要的嵌套数据。 这消除了后续数据库查询的需要,优化了性能和数据检索。
以上是如何使用实体框架的包括方法有效地检索嵌套属性?的详细内容。更多信息请关注PHP中文网其他相关文章!