XElement xmlCustomers = new XElement("customers",
from c in customers
where c.Country == Countries.Italy
select new XElement("customer",
new XElement("name", c.Name),
new XElement("city", c.City),
new XElement("country", c.Country)));

var cities = xmlCustomers.DescendantsAndSelf("city");

Console.WriteLine("\nPed zmnou zdrojovho XML");
foreach (var city in cities) {
	Console.WriteLine(city);
}
