Table of Contents

Class NullValueAssignmentException

Namespace
Rinku.Mapping
Assembly
Rinku.dll

Thrown when a database NULL is assigned to a value that does not accept null.

public class NullValueAssignmentException : RinkuReadException, ISerializable
Inheritance
NullValueAssignmentException
Implements
Inherited Members
Extension Methods

Constructors

NullValueAssignmentException(Type, Type, string)

Thrown when a database NULL is assigned to a value that does not accept null.

public NullValueAssignmentException(Type parentType, Type paramType, string paramName)

Parameters

parentType Type
paramType Type
paramName string

Fields

ParameterName

The name of the parameter that should not be null

public readonly string ParameterName

Field Value

string

ParameterType

The type of the parameter that should not be null

public readonly Type ParameterType

Field Value

Type

ParentType

The type of the parent

public readonly Type ParentType

Field Value

Type