This might be already asked question but I still can't solve my problem. I don't even know if I am on the right path. Some help will be appreciated.
I have two model classes in an ASP.NET Web API project looking like this:
namespace Artists.Models
{
public class Artist
{
public int ArtistID { get; set; }
public string ArtistName { get; set; }
}
}
and :
namespace Artists.Models
{
public class Project
{
public int ProjectID { get; set; }
public string ProjectName { get; set; }
public int ArtistID { get; set; }
}
}
That created two SQL tables connected by ArtistID as a foreign key in Project.
I have this controller code:
public IQueryable<Object> GetArtists()
{
return from a in db.Artists
join p in db.Projects on a.ArtistID equals p.ArtistID
select new
{
account_name = a.ArtistName,
project_name = p.ProjectName
};
}
that returns this output in Postman:
[
{
"name": "Jack",
"project_name": "ProjectOne"
},
{
"name": "Mike",
"project_name": "ProjectTwo"
},
{
"name": "Mike",
"project_name": "ProjectThree"
},
{
"name": "John",
"project_name": "ProjectFour"
},
{
"name": "John",
"project_name": "ProjectFive"
}
]
but I want the output to be like this:
[
{
"name": "Jack",
"projects": ["ProjectOne"]
},
{
"name": "Mike",
"projects": ["ProjectTwo", "ProjectThree"]
},
{
"name": "John",
"projects": ["ProjectFour", "ProjectFive"]
},
]
Am I even close? I know this might an asked question but I really can't figure it out.