As you’ve seen, there are a number of ways in which you can query the database from the code of your application, In some of the simplest forms, your queries looked like the following: Table<Product> query = dc.Products; This command was pulling down the entire Products table to your query object instance. Using Query Expressions In…