Click or drag to resize
Project.GetAllElementsMarkedForDeletionFromMetaData Method
Gets all elements of type typeOfElementsToRetrieve from the meta data of the database with the driverid specified which are marked for deletion

Namespace: SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
Assembly: SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.0.0.0 (5.0.0)
Syntax
public HashSet<DBElementBase> GetAllElementsMarkedForDeletionFromMetaData(
	DBElementType typeOfElementsToRetrieve,
	string driverID,
	string catalogFilter,
	string schemaFilter
)

Parameters

typeOfElementsToRetrieve
Type: SD.LLBLGen.Pro.DBDriverCore.DBElementType
The type of elements to retrieve.
driverID
Type: System.String
The driver ID.
catalogFilter
Type: System.String
The catalog filter. If left empty (empty string), all catalogs are considered, otherwise the one specified
schemaFilter
Type: System.String
The schema filter. If left empty (empty string), all schemas in the specified catalog(s) are considered, otherwise the one specified

Return Value

Type: HashSet<DBElementBase>
set of elements which are marked for deletion
See Also