The &basic decorator
Write database models faster by reducing boilerplate with the help of this decorator.
It might feel a bit tedious to have to create the columns, the initialization method, and a serialization method for each new database model. The &basic
decorator automatically generates the initialization and serialization methods for you, so you only have to define the columns.
You can use the &basic
decorator your model fulfils the following criteria:
The
init()
method assigns all columns a value that gets passed into the method.The
s()
method returns all columns values as separate key-value pairs.
The decorator should be placed on the line before the model definition.
Examples
Where you can use the decorator.
Without using the &basic
decorator.
Using the &basic
decorator.
Where you can't use the decorator.
In this example, the &basic decorator can't be used since the init()
method set's a value that doesn't get passed in, and s()
returns two of the columns combined into one key-value pair.
Last updated