lgtti
Results
3
comments of
lgtti
Hi, i have mapped db fields with struct fields using this: ``` type BaseDAO struct { FieldCache map[string]string } func NewBaseDAO(model interface{}) BaseDAO { dao := BaseDAO{ FieldCache: make(map[string]string), }...
Update: solution tested with mysql and mariadb also. It works.
> Not sure what you are trying to achieve. Are you trying to use a single query and single model to update all three databases? No, my microservice must be...