EntityCollection<TEntity>.Count 属性

定义

获取集合中包含的对象数。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
member this.Count : int
Public ReadOnly Property Count As Integer

属性值

EntityCollection<TEntity> 中包含的元素数。

实现

注解

Count 属性获取当前本地集合中的实体数量,而不反映数据源中的集合大小。 零计数不一定表示相关集合为空。 要确定数据源中的集合大小,请调用 Load 方法或在查询路径中包含相关对象。 有关详细信息,请参阅加载相关对象

适用于