DataSink.OnCreateStorage 方法
在执行期间由数据生成引擎调用,以创建表存储和允许派生类执行其他任务。
命名空间: Microsoft.Data.Schema.Tools.DataGenerator
程序集: Microsoft.Data.Schema.Tools(在 Microsoft.Data.Schema.Tools.dll 中)
语法
声明
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
参数
- targetTable
类型:Microsoft.Data.Schema.SchemaModel.Abstract.IDatabaseTable
一个表示目标表的 ITable 对象。
返回值
类型:Microsoft.Data.Schema.Tools.DataGenerator.TableStorage
一个 TableStorage 对象。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.Data.Schema.Tools.DataGenerator 命名空间
ITable