Fix README typo on Related usage.

This commit is contained in:
Eric Chen 2016-01-26 03:14:05 -08:00
parent 9739cb853c
commit 7bb90371e9
1 changed files with 1 additions and 1 deletions

View File

@ -570,7 +570,7 @@ db.Model(&user).Related(&card, "CreditCard")
//// SELECT * FROM credit_cards WHERE user_id = 123; // 123 is user's primary key
// CreditCard is user's field name, it means get user's CreditCard relations and fill it into variable card
// If the field name is same as the variable's type name, like above example, it could be omitted, like:
db.Model(&user).Related(&creditCard, "CreditCard")
db.Model(&user).Related(&card)
```
### Belongs To