示例#1
0
文件: Program.cs 项目: hrist0/Testing
        static void Main(string[] args)
        {
            var ctx = new GeographyEntities();
            var countries = ctx.Countries.Where(m => m.Monasteries.Count() > 0).Select(c => new
            {
                country = c.CountryName,
                monastery = c.Monasteries.OrderBy(m => m.Name).Select(m => m.Name)
            })
            .OrderBy(c => c.country);

            XmlDocument doc = new XmlDocument();
            XmlDeclaration xmlDeclaration = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
            XmlElement root = doc.DocumentElement;
            doc.InsertBefore(xmlDeclaration, root);

            var body = doc.CreateElement("monasteries");
            doc.AppendChild(body);

            foreach (var item in countries)
            {
                var country = doc.CreateElement("country");
                country.SetAttribute("name", item.country);
                body.AppendChild(country);

                foreach (var monk in item.monastery)
                {
                    var mon = doc.CreateElement("monastery");
                    mon.InnerText = monk;
                    country.AppendChild(mon);
                }
            }
            doc.Save("monasteries.xml");
        }
示例#2
0
文件: Program.cs 项目: hrist0/Testing
        static void Main(string[] args)
        {
            var ctx = new GeographyEntities();
            var riversAndCountries = ctx.Rivers.Select(r => new
            {
                riverName = r.RiverName,
                riverLength = r.Length,
                countries = r.Countries
                .OrderBy(c => c.CountryName)
                .Select(c => c.CountryName)
            })
            .OrderByDescending(r => r.riverLength);

            var json = new JavaScriptSerializer().Serialize(riversAndCountries.ToList());

            File.WriteAllText("../../rivers.json", json);
        }