(out interface{}, conds ...interface{})
| 49 | } |
| 50 | |
| 51 | func (association *Association) Find(out interface{}, conds ...interface{}) error { |
| 52 | if association.Error == nil { |
| 53 | association.Error = association.buildCondition().Find(out, conds...).Error |
| 54 | } |
| 55 | return association.Error |
| 56 | } |
| 57 | |
| 58 | func (association *Association) Append(values ...interface{}) error { |
| 59 | values = expandValues(values) |
nothing calls this directly
no test coverage detected