author property
- @OrmField.new(ignore: true)
- @OrmRelation.new(kind: RelationKind.belongsTo, target: Author, foreignKey: 'author_id', localKey: 'id')
final
Implementation
@OrmField(ignore: true)
@OrmRelation(
kind: RelationKind.belongsTo,
target: Author,
foreignKey: 'author_id',
localKey: 'id',
)
final Author? author;