ASP.NET Web Api join two tables to make an array of objects
问题 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