- Note: the shortcut function is only an auxiliary function of Gorm. Currently only query function is supported
- _BaseMgr
- Table logic function
- Brief description
- [Basic types of logic]](#Basic-types-of-logic)
- Access to existing conditions
- Access to function options
- Single element access
- Index access
Basic function. All management types inherit this function. This function provides the underlying common function.
Set context, which is used to set context. The current function is not enabled
Get gorm.db original link
Update gorm.db original link
Get whether to query foreign key Association
Set whether to query foreign key Association
Table logical function operation about database table related function: use [XXX] to represent logical table structure name
Queries are divided into the following categories
`_[xxx]Mgr` : Logical table type
`Get/Gets` : Batch get (you can use gormt to get the final result using its preset conditions)
This function is used to support multiple condition acquisition
`GetByOption/GetByOptions` : Get function option list
`With[xxx]` : Parameter list in function options
`GetFrom[xxx]` : Element acquisition (single case conditional acquisition)
`GetBatchFrom[xxx]` : Batch element acquisition (array acquisition of a single condition)
`FetchByPrimaryKey` : Primary key acquisition
`FetchUniqueBy[xxx]` : Get by unique index
`FetchIndexBy[xxx]` : Composite index fetch (multiple returned)
`FetchUniqueIndexBy[xxx]` : Unique composite index fetch (return one)