cedric
class Product(val productId: Int) { @Json(ignored = true) val basePrice: Double by lazy { db.findPrice(productId) } }