SqlJoinType EnumerationA Sandcastle Documented Class Library
SqlJoinType, represents the two join types we support.

Namespace: P4s3FilterTools
Assembly: P4s3FilterTools (in P4s3FilterTools.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public enum SqlJoinType
Members

  Member nameValueDescription
NONE-1 Represents an empty or unknown join type.
INNER1 Inner join returns all rows from the left table, andthe matched row from the right table.
LEFT2 Left join returns all rows from the left table, and the matched rows from the right table.
RIGHT3 Right join returns all rows from the right table, and the matched rows from the left table.
FULL4 Returns all rows when there is a match in one of the tables.
See Also