I wanted a MudTable where the Sublist appear in the same row as the parent row. 
public class Element { public string FileName { get; set; } = string.Empty; public string FileDescription { get; set; } = string.Empty; public string CreatedDate { get; set; } = string.Empty; public List<ElementFile> ElementFiles { get; set; } = new(); } public class ElementFile { public string Path{ get; set; } = string.Empty; public string Name { get; set; } = string.Empty; public DateTime Modified { get; set;} }I added a working sample.