Enum JoinTypes
- Namespace
- FluentCommand.Query
- Assembly
- FluentCommand.dll
Specifies the types of SQL JOIN operations available for combining tables in a query.
public enum JoinTypes
- Extension Methods
Fields
Inner = 0
Represents an inner join, which returns only the rows with matching values in both tables. Corresponds to the SQL
INNER JOIN
operation.Left = 1
Represents a left outer join, which returns all rows from the left table and the matched rows from the right table. Unmatched rows from the right table will contain nulls. Corresponds to the SQL
LEFT OUTER JOIN
operation.Right = 2
Represents a right outer join, which returns all rows from the right table and the matched rows from the left table. Unmatched rows from the left table will contain nulls. Corresponds to the SQL
RIGHT OUTER JOIN
operation.