Click or drag to resize
DBSchemaRetrieverRetrieveTableAndFieldMetaData Method
Retrieves the table- and field meta data for the tables which names are in the passed in elementNames and which are in the schema specified.

Namespace:  SD.LLBLGen.Pro.DBDriverCore
Assembly:  SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
protected virtual void RetrieveTableAndFieldMetaData(
	DBSchema schemaToFill,
	IEnumerable<DBElementName> elementNames
)

Parameters

schemaToFill
Type: SD.LLBLGen.Pro.DBDriverCoreDBSchema
The schema to fill.
elementNames
Type: System.Collections.GenericIEnumerableDBElementName
The element names.
Remarks
Implementers should add DBTable instances with the DBTableField instances to the DBSchema instance specified. Default implementation is a no-op
See Also