I initially thought that using a view would be the best option because I've already encapsulated every column that I want in it.
However, after closer inspection, it seems that adding just tables (and using the built-in relationships that are already created) is a much cooler way to do it because those relationships cause LINQ to SQL to create COLLECTIONS within the objects. "Customer" gets an automatic "Orders" collection, just because there's a foreign key relationship between them. That's something that a flat view won't give me.
What are most people querying, tables or views?