Returns a pseudo column representation of the column name. Error checking is deferred to SerializeSql.
(name string)
| 94 | // Returns a pseudo column representation of the column name. Error checking |
| 95 | // is deferred to SerializeSql. |
| 96 | func (t *Table) C(name string) NonAliasColumn { |
| 97 | return &deferredLookupColumn{ |
| 98 | table: t, |
| 99 | colName: name, |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | // Returns all columns for a table as a slice of projections |
| 104 | func (t *Table) Projections() []Projection { |
no outgoing calls