Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for JoinTarget (0.09 seconds)

  1. clause/joins.go

    	LeftJoin  JoinType = "LEFT"
    	RightJoin JoinType = "RIGHT"
    )
    
    type JoinTarget struct {
    	Type        JoinType
    	Association string
    	Subquery    Expression
    	Table       string
    }
    
    func Has(name string) JoinTarget {
    	return JoinTarget{Type: InnerJoin, Association: name}
    }
    
    func (jt JoinType) Association(name string) JoinTarget {
    	return JoinTarget{Type: jt, Association: name}
    }
    
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sun May 25 07:40:40 GMT 2025
    - 1.5K bytes
    - Click Count (0)
Back to Top