StatefulCustomMappingFactory<TSrc,TDst,TState> 类

定义

有状态自定义映射工厂的基类型。

public abstract class StatefulCustomMappingFactory<TSrc,TDst,TState> where TSrc : class, new() where TDst : class, new() where TState : class, new()
type StatefulCustomMappingFactory<'Src, 'Dst, 'State (requires 'Src : null and 'Src : (new : unit -> 'Src) and 'Dst : null and 'Dst : (new : unit -> 'Dst) and 'State : null and 'State : (new : unit -> 'State))> = class
Public MustInherit Class StatefulCustomMappingFactory(Of TSrc, TDst, TState)

类型参数

TSrc

描述输入 IDataView使用的“源”列的类型。

TDst

描述此转换添加新列的类型。

TState

描述映射使用的状态对象的类型。

继承
StatefulCustomMappingFactory<TSrc,TDst,TState>

构造函数

StatefulCustomMappingFactory<TSrc,TDst,TState>()

有状态自定义映射工厂的基类型。

方法

GetMapping()

返回从TSrc类型输入和状态对象映射到TDst输出的TState映射委托。

GetStateInitAction()

返回在初始化行游标之前调用一次的操作,以初始化游标使用的状态对象。

适用于