Can I use the auto-generated Linq-to-SQL entity classes in 'disconnected' mode?
- by Gary McGill
Suppose I have an automatically-generated Employee class based on the Employees table in my database.
Now suppose that I want to pass employee data to a ShowAges method that will print out name & age for a list of employees. I'll retrieve the data for a given set of employees via a linq query, which will return me a set of Employee instances.…