Click or drag to resize

SessionBaseAllObjectsT Method

Gets an object used for enumerating all objects in all Databases

Namespace:  VelocityDb.Session
Assembly:  VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax
public AllObjects<T> AllObjects<T>(
	bool includeSubclasses = true,
	bool databasePerType = true
)

Parameters

includeSubclasses (Optional)
Type: SystemBoolean
Also return instances of sub classes or classes that implements the specified interface class
databasePerType (Optional)
Type: SystemBoolean
Assume that persisted objects where made persistent the simple way using Persist(IOptimizedPersistable, NullableUInt16). When persisting this way, each object type gets its own Database which makes finding these objects easier and faster

Type Parameters

T
The type of object we are looking for

Return Value

Type: AllObjectsT
The enumeration wrapper object
See Also