<p>I have an MVC C# web (classic not core) and sql database. The goal is to merge a 2nd database table and take 2 columns . If sql it might be
SELECT * FROM TABLE1 INNER JOIN
SELECT NAU.ROLES, NAU.ID
FROM NEWDB.ASPNETUSER NAU
WHERE NAU.ID = TABLE1.ID
SORT BY TABLE1.LASTNAME
as long as 2 new colums are there to pick from based on id
</p>