Fix generating class for results with nested results.

This commit is contained in:
Alexander Wilde 2020-04-04 01:04:37 +01:00
parent c692c56d43
commit c3f5ba9aa0
1 changed files with 2 additions and 1 deletions

View File

@ -163,7 +163,8 @@ class InferredResultSet {
/// Whether a new class needs to be written to store the result of this query.
/// We don't need to do that for queries which return an existing table model
/// or if they only return exactly one column.
bool get needsOwnClass => matchingTable == null && columns.length > 1;
bool get needsOwnClass => matchingTable == null && columns.length > 1
|| nestedResults.isNotEmpty;
/// Whether this query returns a single column that should be returned
/// directly.