CatalogMetaDataRetrievalActionDescription Constructor |
Namespace:
SD.LLBLGen.Pro.DBDriverCore
Assembly:
SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntax public CatalogMetaDataRetrievalActionDescription(
string description,
Action<DBCatalog> actionFunc,
bool executeBeforeSchemaMetaDataRetrieval
)
Public Sub New (
description As String,
actionFunc As Action(Of DBCatalog),
executeBeforeSchemaMetaDataRetrieval As Boolean
)
Parameters
- description
- Type: SystemString
The description. - actionFunc
- Type: SystemActionDBCatalog
the action func, which is the func to execute to perform the action. Assumes the action is performed by the catalog retriever
which is calling this ActionFunc. - executeBeforeSchemaMetaDataRetrieval
- Type: SystemBoolean
a value indicating whether the action should be executed before (true) or after (false)
the schema meta-data retrieval cycle.
See Also