Say I have a customer table and would like to make a query with raw SQL. The below code does not work:
List<Customer> customers = _db.Customer.FromSql("SELECT * FROM Customer").ToList();
It fails with the error code
'42P01: relation "customer" does not exist'