Estou estudando a aula de Linq consultas XML, como prática fiz o seguinte código:
XElement root = XElement.Load(@"data\Users.xml");
var queryXML =
from u in root.Element("Users").Elements("User")
select u;
Porém esta dando o seguinte erro de compilação:
Could not find an implementation of the query pattern for source type 'IEnumerable'. 'Select' not found. Are you missing a reference to 'System.Core.dll' or a using directive for 'System.Linq'? [TestePassword]
Could not find an implementation of the query pattern for source type 'IEnumerable'. 'Select' not found.