diff --git a/callback_query.go b/callback_query.go index ba10cc7d..7038e8f4 100644 --- a/callback_query.go +++ b/callback_query.go @@ -19,6 +19,10 @@ func queryCallback(scope *Scope) { return } + if _, skip := scope.InstanceGet("gorm:only_preload"); skip { + return + } + defer scope.trace(NowFunc()) var ( diff --git a/main.go b/main.go index 25c3a06b..316053eb 100644 --- a/main.go +++ b/main.go @@ -311,6 +311,11 @@ func (s *DB) Find(out interface{}, where ...interface{}) *DB { return s.NewScope(out).inlineCondition(where...).callCallbacks(s.parent.callbacks.queries).db } +//Preloads preloads relations, don`t touch out +func (s *DB) Preloads(out interface{}) *DB { + return s.NewScope(out).InstanceSet("gorm:only_preload", 1).callCallbacks(s.parent.callbacks.queries).db +} + // Scan scan value to a struct func (s *DB) Scan(dest interface{}) *DB { return s.NewScope(s.Value).Set("gorm:query_destination", dest).callCallbacks(s.parent.callbacks.queries).db