author property

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

Implementation

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