DbCollectionEntry<TEntity, TElement> 类

[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]

此类的实例从 DbEntityEntry<TEntity> 的 Collection 方法返回,并且允许对实体的集合导航属性执行各种操作(如加载)。

继承层次结构

System.Object
  System.Data.Entity.Infrastructure.DbMemberEntry<TEntity, ICollection<TElement>>
    System.Data.Entity.Infrastructure.DbCollectionEntry<TEntity, TElement>

命名空间:  System.Data.Entity.Infrastructure
程序集:  EntityFramework(在 EntityFramework.dll 中)

语法

声明
Public Class DbCollectionEntry(Of TEntity As Class, TElement) _
    Inherits DbMemberEntry(Of TEntity, ICollection(Of TElement))
用法
Dim instance As DbCollectionEntry(Of TEntity, TElement)
public class DbCollectionEntry<TEntity, TElement> : DbMemberEntry<TEntity, ICollection<TElement>>
where TEntity : class
generic<typename TEntity, typename TElement>
where TEntity : ref class 
public ref class DbCollectionEntry : public DbMemberEntry<TEntity, ICollection<TElement>^>
type DbCollectionEntry<'TEntity, 'TElement when 'TEntity : not struct> =  
    class 
        inherit DbMemberEntry<'TEntity, ICollection<'TElement>>
    end
JScript does not support generic types and methods.

类型参数

  • TEntity
    此属性所属的实体的类型。
  • TElement
    实体集合中的元素的类型。

DbCollectionEntry<TEntity, TElement> 类型公开以下成员。

属性

  名称 描述
公共属性 CurrentValue 获取或设置导航属性的当前值。当前值为导航属性引用的实体。 (重写 DbMemberEntry<TEntity, TProperty>.CurrentValue。)
公共属性 EntityEntry 此导航属性所属的 DbEntityEntry<TEntity>。 (重写 DbMemberEntry<TEntity, TProperty>.EntityEntry。)
公共属性 IsLoaded 获取或设置一个值,该值指示是否已从数据库加载此集合的所有实体。
公共属性 Name 获取属性名称。 (重写 DbMemberEntry<TEntity, TProperty>.Name。)

顶部

方法

  名称 描述
公共方法 Equals 指定对象是否等于指定的对象。 (继承自 DbMemberEntry<TEntity, TProperty>。)
受保护的方法 Finalize (继承自 Object。)
公共方法 GetHashCode 获取与对象关联的哈希代码。 (继承自 DbMemberEntry<TEntity, TProperty>。)
公共方法 GetType 获取当前实例的 Type。 (继承自 DbMemberEntry<TEntity, TProperty>。)
公共方法 GetValidationErrors 验证此属性。 (继承自 DbMemberEntry<TEntity, TProperty>。)
公共方法 Load 从数据库中加载实体的集合。请注意,不会使用数据库中的值覆盖上下文中已存在的实体。
公共方法 LoadAsync() 异步从数据库中加载实体的集合。请注意,不会使用数据库中的值覆盖上下文中已存在的实体。
公共方法 LoadAsync(CancellationToken) 异步从数据库中加载实体的集合。请注意,不会使用数据库中的值覆盖上下文中已存在的实体。
受保护的方法 MemberwiseClone (继承自 Object。)
公共方法 Query 返回将用于从数据库加载此集合的查询。可使用 LINQ 修改返回的查询以便在数据库中执行筛选或操作,例如,计算数据库中的集合中的实体数,而不实际加载这些实体。
公共方法 ToString 返回 DbMemberEntry<TEntity, TProperty> 的字符串表示形式。 (继承自 DbMemberEntry<TEntity, TProperty>。)

顶部

运算符

  名称 描述
公共运算符静态成员 Implicit(DbCollectionEntry<TEntity, TElement> to DbCollectionEntry) 返回由此对象表示的导航属性的非泛型 DbCollectionEntry 类的新实例。

顶部

线程安全

此类型的任何公共 static(在 Visual Basic 中为 Shared) 成员都是线程安全的。但不保证所有实例成员都是线程安全的。

请参阅

参考

System.Data.Entity.Infrastructure 命名空间