Enum ReferenceAttribute.JoinType
- Namespace
- Supabase.Postgrest.Attributes
- Assembly
- Supabase.Postgrest.dll
Specifies the Join type on this reference. PostgREST only allows for a LEFT join and an INNER join.
public enum ReferenceAttribute.JoinType
- Extension Methods
Fields
Inner = 0
INNER JOIN: returns rows when there is a match on both the source and the referenced tables.
Left = 1
LEFT JOIN: returns all rows from the source table, even if there are no matches in the referenced table