Create a new SQL command and linq query to get all customers and accounts from an Accounts table and Customers table in a atm database
using (var db = new AtmContext()) { var customers = from cust in db.customers join acc in db.accounts on cust.user.id equals acc.user.id select cust.user.id; }