MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Impor um mapeamento de tipo com mgo


Use o Setter e Getter interfaces para controlar a representação no mongo:
type CustomId bson.ObjectId

func (id *CustomId) SetBSON(raw bson.Raw) error {
   var v bson.ObjectId
   err := raw.Unmarshal(&v)
   *id = CustomId(v)
   return err
}
func (id CustomId) GetBSON() (interface{}, error) {
   return bson.ObjectId(id), nil
}