Table of Contents

Class SelectItemNotInJoinException

Namespace
YndigoBlue.Velocity.Exceptions
Assembly
YndigoBlue.Velocity.dll

Thrown when a SELECT clause references a column that is not available in the JOIN result set.

public class SelectItemNotInJoinException : Exception, ISerializable
Inheritance
SelectItemNotInJoinException
Implements

Remarks

This exception occurs when attempting to select a column that doesn't exist in any of the joined tables or their aliases. Common scenarios include referencing columns from tables not included in the JOIN, using incorrect table aliases, or attempting to select columns that were not exposed by the JOIN configuration.

Constructors

SelectItemNotInJoinException()

Initializes a new instance of the SelectItemNotInJoinException class.

SelectItemNotInJoinException(string)

Initializes a new instance of the SelectItemNotInJoinException class with a specified error message.

Properties

SelectItemName

Gets or sets the name of the SELECT item that could not be found in the JOIN.