prepend package name for mappers documentation #12

Merged
rickypai merged 1 commits from patch-1 into master 2018-02-06 05:53:25 +00:00

View File

@ -9,7 +9,7 @@ Use `xorm.IMapper` interface to set the name mapping rule. There are three rules
SnakeMapper is the default. You can change it use `SetMapper`.
```Go
engine.SetMapper(SameMapper{})
engine.SetMapper(core.SameMapper{})
```
And you should notice:
@ -18,8 +18,8 @@ And you should notice:
* Tables's mapping rule could be different from Columns':
```Go
engine.SetTableMapper(SameMapper{})
engine.SetColumnMapper(SnakeMapper{})
engine.SetTableMapper(core.SameMapper{})
engine.SetColumnMapper(core.SnakeMapper{})
```
When a struct auto mapping to a database's table, the below table describes how they change to each other: