DataSink.OnCreateStorage Method
Called by the data generation engine during execution to create the table storage and to allow derived classes to perform additional tasks.
Namespace: Microsoft.Data.Schema.Tools.DataGenerator
Assembly: Microsoft.Data.Schema.Tools (in Microsoft.Data.Schema.Tools.dll)
Syntax
'Declaration
Protected MustOverride Function OnCreateStorage ( _
targetTable As IDatabaseTable _
) As TableStorage
protected abstract TableStorage OnCreateStorage(
IDatabaseTable targetTable
)
protected:
virtual TableStorage^ OnCreateStorage(
IDatabaseTable^ targetTable
) abstract
abstract OnCreateStorage :
targetTable:IDatabaseTable -> TableStorage
protected abstract function OnCreateStorage(
targetTable : IDatabaseTable
) : TableStorage
Parameters
- targetTable
Type: Microsoft.Data.Schema.SchemaModel.Abstract.IDatabaseTable
An ITable object representing the target table.
Return Value
Type: Microsoft.Data.Schema.Tools.DataGenerator.TableStorage
A TableStorage object.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.Data.Schema.Tools.DataGenerator Namespace
ITable