mirror of https://github.com/go-gorm/gorm.git
ec72a4cb6b
When using `Preload` on a `many2many` association, the `Query` callback chain was not being called. This made it difficult to write a plugin that could reliably get called regardless of how objects were being queried. Now `handleManyToManyPreload` will call the `Query` callback chain for each object that is retrieved by following the association. Since the data has already been read by the `handleManyToManyPreload` method, a new scope setting called `gorm:skip_queryCallback` is set to `true` before calling the callbacks. Callbacks can check for the presence of this setting if they should not be run; the default `queryCallback` is an example of this case. Fixes jinzhu/gorm#1621. |
||
---|---|---|
.github | ||
dialects | ||
.codeclimate.yml | ||
.gitignore | ||
License | ||
README.md | ||
association.go | ||
association_test.go | ||
callback.go | ||
callback_create.go | ||
callback_delete.go | ||
callback_query.go | ||
callback_query_preload.go | ||
callback_row_query.go | ||
callback_save.go | ||
callback_system_test.go | ||
callback_update.go | ||
callbacks_test.go | ||
create_test.go | ||
customize_column_test.go | ||
delete_test.go | ||
dialect.go | ||
dialect_common.go | ||
dialect_mysql.go | ||
dialect_postgres.go | ||
dialect_sqlite3.go | ||
embedded_struct_test.go | ||
errors.go | ||
errors_test.go | ||
field.go | ||
field_test.go | ||
interface.go | ||
join_table_handler.go | ||
join_table_test.go | ||
logger.go | ||
main.go | ||
main_test.go | ||
migration_test.go | ||
model.go | ||
model_struct.go | ||
multi_primary_keys_test.go | ||
pointer_test.go | ||
polymorphic_test.go | ||
preload_test.go | ||
query_test.go | ||
scaner_test.go | ||
scope.go | ||
scope_test.go | ||
search.go | ||
search_test.go | ||
test_all.sh | ||
update_test.go | ||
utils.go | ||
utils_test.go | ||
wercker.yml |
README.md
GORM
The fantastic ORM library for Golang, aims to be developer friendly.
Overview
- Full-Featured ORM (almost)
- Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism)
- Callbacks (Before/After Create/Save/Update/Delete/Find)
- Preloading (eager loading)
- Transactions
- Composite Primary Key
- SQL Builder
- Auto Migrations
- Logger
- Extendable, write Plugins based on GORM callbacks
- Every feature comes with tests
- Developer Friendly
Getting Started
- GORM Guides jinzhu.github.com/gorm
Upgrading To V1.0
Supporting the project
Author
jinzhu
Contributors
https://github.com/jinzhu/gorm/graphs/contributors
License
Released under the MIT License.