DatabaseAllObjectsT Method |
Gets an object used for enumerating all objects in this Database
Namespace:
VelocityDb
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public AllObjects<T> AllObjects<T>(
bool includeSubClasses = true
)
Public Function AllObjects(Of T) (
Optional includeSubClasses As Boolean = true
) As AllObjects(Of T)
public:
generic<typename T>
AllObjects<T>^ AllObjects(
bool includeSubClasses = true
)
member AllObjects :
?includeSubClasses : bool
(* Defaults:
let _includeSubClasses = defaultArg includeSubClasses true
*)
-> AllObjects<'T>
Parameters
- includeSubClasses (Optional)
- Type: SystemBoolean
Also return instances of sub classes
Type Parameters
- T
- The type of object we are looking for
Return Value
Type:
AllObjectsTThe enumeration wrapper object
See Also