DbCollectionEntry<TEntity,TElement> 类

定义

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

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", Justification="FxCop rule is wrong; Database is not two words.", MessageId="Db")]
public class DbCollectionEntry<TEntity,TElement> : System.Data.Entity.Infrastructure.DbMemberEntry<TEntity,System.Collections.Generic.ICollection<TElement>> where TEntity : class
public class DbCollectionEntry<TEntity,TElement> : System.Data.Entity.Infrastructure.DbMemberEntry<TEntity,System.Collections.Generic.ICollection<TElement>> where TEntity : class
type DbCollectionEntry<'Entity, 'Element (requires 'Entity : null)> = class
    inherit DbMemberEntry<'Entity, ICollection<'Element> (requires 'Entity : null)>
Public Class DbCollectionEntry(Of TEntity, TElement)
Inherits DbMemberEntry(Of TEntity, ICollection(Of TElement))

类型参数

TEntity

此属性所属的实体的类型。

TElement

实体集合中的元素的类型。

继承
DbMemberEntry<TEntity,ICollection<TElement>>
DbCollectionEntry<TEntity,TElement>
属性

属性

CurrentValue

获取或设置导航属性的当前值。 当前值为导航属性引用的实体。

EntityEntry

DbEntityEntry<TEntity>此导航属性所属的 。

IsLoaded

获取或设置一个值,该值指示是否已从数据库加载此集合的所有实体。

Name

获取属性名称。

方法

Equals(Object)

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

(继承自 DbMemberEntry<TEntity,TProperty>)
GetHashCode()

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

(继承自 DbMemberEntry<TEntity,TProperty>)
GetType()

获取当前实例的 Type

(继承自 DbMemberEntry<TEntity,TProperty>)
GetValidationErrors()

验证此属性。

(继承自 DbMemberEntry<TEntity,TProperty>)
Load()

从数据库中加载实体的集合。 请注意,不会使用数据库中的值覆盖上下文中已存在的实体。

LoadAsync()

从数据库异步加载实体集合。 请注意,不会使用数据库中的值覆盖上下文中已存在的实体。

LoadAsync(CancellationToken)

从数据库异步加载实体集合。 请注意,不会使用数据库中的值覆盖上下文中已存在的实体。

Query()

返回将用于从数据库加载此集合的查询。 可使用 LINQ 修改返回的查询以便在数据库中执行筛选或操作,例如,计算数据库中的集合中的实体数,而不实际加载这些实体。

ToString()

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

(继承自 DbMemberEntry<TEntity,TProperty>)

运算符

Implicit(DbCollectionEntry<TEntity,TElement> to DbCollectionEntry)

返回由此 对象表示的导航属性的非泛型 DbCollectionEntry 类的新实例。

适用于