We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Models are based on go structures. Let’s use the following struct
type Personne struct { Nom string Id int Age int }
GoUDA can persist struct types that implements ModelInterface. There are two way to achieve this :
type Personne struct { Nom string Id int Age int gouda.NullModel }