Skip to content

Support nested collections #63

@Jogai

Description

@Jogai

given:

    new Creator{Id = 1, FullName = @"Douglas Adams", Born = new DateOnly(1952,4,11), Died = new DateOnly(2001,5,11)};
	new Work{Id = 41, CreatorId = 1, Title = @"Young Zaphod Plays It Safe"};

Result:

	 ---------------------------------------------------------------------------------------------------------------------- 
	 | Id | FullName      | Born       | Died       | PrimaryLanguage | Works                                             |
	 ---------------------------------------------------------------------------------------------------------------------- 
	 | 1  | Douglas Adams | 04/11/1952 | 05/11/2001 |                 | System.Collections.ObjectModel.Collection`1[Work] |
	 ---------------------------------------------------------------------------------------------------------------------- 

It would be really nice if instead of System.Collections.ObjectModel.Collection1[Work]` the following table was inserted:

	 -------------------------------------------------------------------- 
	 | Id | Title                      | Language | CreatorId | Creator |
	 -------------------------------------------------------------------- 
	 | 41 | Young Zaphod Plays It Safe |          | 1         | Creator |
	 -------------------------------------------------------------------- 

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions