NestedRelationName nested relationships like `Manager__Company`
(prefix, name string)
| 175 | |
| 176 | // NestedRelationName nested relationships like `Manager__Company` |
| 177 | func NestedRelationName(prefix, name string) string { |
| 178 | return prefix + nestedRelationSplit + name |
| 179 | } |
| 180 | |
| 181 | // SplitNestedRelationName Split nested relationships to `[]string{"Manager","Company"}` |
| 182 | func SplitNestedRelationName(name string) []string { |