Wednesday, December 26, 2012

Are you missing a reference or a using directive for 'System.Linq'?

If you see the following error, it could be easy to fix it.

 

Could not find an implementation of the query pattern for source type 'System.Collections.Generic.List<string>'.  'Select' not found.  Are you missing a reference or a using directive for 'System.Linq'?

 

Just ensure you have done the following:

  • Reference to System.Core
  • using/Imports to System.Linq

No comments:

Post a Comment