LinqDataSourceView.ValidateContextType(Type, Boolean) 方法

定义

检查数据上下文类是否是从 DataContext 派生的。

protected:
 virtual void ValidateContextType(Type ^ contextType, bool selecting);
protected virtual void ValidateContextType (Type contextType, bool selecting);
abstract member ValidateContextType : Type * bool -> unit
override this.ValidateContextType : Type * bool -> unit
Protected Overridable Sub ValidateContextType (contextType As Type, selecting As Boolean)

参数

contextType
Type

要验证的数据上下文类的类型。

selecting
Boolean

指定当选择操作开始时是否已调用该方法。

例外

正在执行插入、更新或删除操作,并且数据上下文类不是从 DataContext 派生的。

注解

属性中指定的类 ContextTypeName 必须派生自 类 DataContext ,才能启用自动插入、更新和删除操作。

适用于