logs property
ManyRelation<LogEntryTable>
get
logs
Implementation
_is.ManyRelation<_iv7ld46g.LogEntryTable> get logs {
if (_logs != null) return _logs!;
var relationTable = _is.createRelationTable(
relationFieldName: 'logs',
field: SessionLogEntry.t.id,
foreignField: _iv7ld46g.LogEntry.t.sessionLogId,
tableRelation: tableRelation,
createTable: (foreignTableRelation) =>
_iv7ld46g.LogEntryTable(tableRelation: foreignTableRelation),
);
_logs = _is.ManyRelation<_iv7ld46g.LogEntryTable>(
tableWithRelations: relationTable,
table: _iv7ld46g.LogEntryTable(
tableRelation: relationTable.tableRelation!.lastRelation,
),
);
return _logs!;
}