Hi! I need a little piece of advice :slightly_smil...
# getting-started
s
Hi! I need a little piece of advice 🙂 I have a lot of properties that map into database fields. Whenever I change them, I update the entity in my table. Therefore, all these properties have default getter and the same setter that litters all over the class and makes it somewhat messy:
Copy code
@DatabaseField var someBoolPropery = false
set(value) {
	field = value
	save(dbHelper)
}
Unfortunately,
@DatabaseField
annotation does not apply to delegated properties. Is there maybe some other neat trick that Kotlin provides to deal with this sort of scenario?