DbCollectionEntry 类

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

表示非泛型版本的 DbCollectionEntry<TEntity, TElement> 类。

继承层次结构

System.Object
  System.Data.Entity.Infrastructure.DbMemberEntry
    System.Data.Entity.Infrastructure.DbCollectionEntry

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

语法

声明
Public Class DbCollectionEntry _
    Inherits DbMemberEntry
用法
Dim instance As DbCollectionEntry
public class DbCollectionEntry : DbMemberEntry
public ref class DbCollectionEntry : public DbMemberEntry
type DbCollectionEntry =  
    class 
        inherit DbMemberEntry 
    end
public class DbCollectionEntry extends DbMemberEntry

DbCollectionEntry 类型公开以下成员。

属性

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

顶部

方法

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

顶部

线程安全

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

请参阅

参考

System.Data.Entity.Infrastructure 命名空间