I have the following model:...public class Model {
public string Name { get; set; }
public List<int> Numbers { get; set; }
}
...And an ...SQL... query that returns the following dataset containing two nvarchar columns:... Name | Numbers
'foo' | '1,...