ProjectGetAllNewElementsFromMetaData Method  | 
 
            Gets all new elements of type typeOfElementsToRetrieve from the meta data of the database with the driverid specified.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic HashSet<DBElementBase> GetAllNewElementsFromMetaData(
	DBElementType typeOfElementsToRetrieve,
	string driverID,
	string catalogFilter,
	string schemaFilter
)
Public Function GetAllNewElementsFromMetaData ( 
	typeOfElementsToRetrieve As DBElementType,
	driverID As String,
	catalogFilter As String,
	schemaFilter As String
) As HashSet(Of DBElementBase)
Parameters
- typeOfElementsToRetrieve
 - Type: SD.LLBLGen.Pro.DBDriverCoreDBElementType
The type of elements to retrieve. - driverID
 - Type: SystemString
The driver ID. - catalogFilter
 - Type: SystemString
The catalog filter. If left empty (empty string), all catalogs are considered, otherwise the one specified - schemaFilter
 - Type: SystemString
The schema filter. If left empty (empty string), all schemas in the specified catalog(s) are considered, otherwise the one specified 
Return Value
Type: 
HashSetDBElementBaseset of elements which are new.
See Also