Returns the number of loaded objects managed by this collection

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public int LoadedObjectsCount { get; }
Visual Basic
Public ReadOnly Property LoadedObjectsCount As Integer
	Get
Visual C++
public:
virtual property int LoadedObjectsCount {
	int get () sealed;
}
F#
abstract LoadedObjectsCount : int with get
override LoadedObjectsCount : int with get

Property Value

Type: Int32

Implements

IBrightstarEntityCollection..::..LoadedObjectsCount

Remarks

Returns zero if the collection is not yet loaded. Use the method IsLoaded to check whether the object collection is loaded or not.

See Also