示例#1
0
文件: FormMain.cs 项目: han6man/EF6
        private void InitializeDataSources()
        {
            db = new WorldGeoDataDB();

            SplashScreen.SetStatus("Loading Cities");
            db.View_Cities.Load();
            db.Cities.Load();
            dataGridViewCities.DataSource = db.Cities.Local.ToBindingList();

            SplashScreen.SetStatus("Loading Streets");
            db.View_Streets.Load();
            db.View_Streets_With_Synonyms.Load();
            db.Streets.Load();
            dataGridViewStreets.DataSource = db.Streets.Local.ToBindingList();

            SplashScreen.SetStatus("Loading Regions");
            db.Country_Regions.Load();
            dataGridViewRegions.DataSource = db.Country_Regions.Local.ToBindingList();

            SplashScreen.SetStatus("Loading Lishkot");
            db.Lishkot_Mana.Load();
            dataGridViewLishkot.DataSource = db.Lishkot_Mana.Local.ToBindingList();

            SplashScreen.SetStatus("Loading Regional_Councils");
            db.Regional_Councils.Load();
            dataGridViewMuacot.DataSource = db.Regional_Councils.Local.ToBindingList();
        }
示例#2
0
文件: FormStreet.cs 项目: han6man/EF6
        private void InitializeBoxes(WorldGeoDataDB db)
        {
            //Regions
            var cities = db.Cities.OrderBy(item => item.City_Name);

            comboBoxCity.DisplayMember = "Text";
            comboBoxCity.ValueMember   = "Value";
            foreach (City c in cities)
            {
                comboBoxCity.Items.Add(new { Text = c.City_Name, Value = c.City_Code });
            }
            comboBoxCity.SelectedIndex = comboBoxCity.FindStringExact("לא רשום");
            //comboBoxCity.SelectedIndex = 0;

            textBoxNameStatus.Text = "official";
        }
示例#3
0
文件: Program.cs 项目: han6man/EF6
        private static void LoadStreetsSynonymsFromXmlByXmlDocument(string fileName)
        {
            XmlDocument xmlDocument = new XmlDocument();

            SplashScreen.SetStatus("Loading XML " + fileName);
            xmlDocument.Load(fileName);
            SplashScreen.SetStatus(fileName + " XML Loaded");

            List <Street> streets = new List <Street>();

            SplashScreen.SetStatus("Parsing XML");
            foreach (XmlNode node in xmlDocument.DocumentElement)
            {
                //foreach (XmlNode child in node.ChildNodes)
                //{
                //
                //}
                Street street = new Street
                {
                    //Country_Region_Code = int.Parse(node.ChildNodes[0].InnerText),
                    //Country_Region_Name = node.ChildNodes[1].InnerText,
                    City_Code = int.Parse(node.ChildNodes[2].InnerText),
                    //City_Name = node.ChildNodes[3].InnerText,
                    Street_Code          = int.Parse(node.ChildNodes[4].InnerText),
                    Street_Name          = node.ChildNodes[5].InnerText,
                    Street_Name_Status   = node.ChildNodes[6].InnerText,
                    Street_Official_Code = int.Parse(node.ChildNodes[7].InnerText)
                };
                if (!streets.Exists(x => x.Street_Code == street.Street_Code))
                {
                    streets.Add(street);
                }
            }
            SplashScreen.SetStatus("XML Parsed");

            SplashScreen.SetStatus("Conecting to db");
            using (WorldGeoDataDB db = new WorldGeoDataDB())
            {
                SplashScreen.SetStatus("Ading streets");
                db.Streets.AddRange(streets);
                db.SaveChanges();
                SplashScreen.SetStatus("Streets Added");
            }
        }
示例#4
0
文件: FormCity.cs 项目: han6man/EF6
        private void InitializeComboBoxes(WorldGeoDataDB db)
        {
            //Regions db.Cities.OrderBy(item => item.City_Name);
            var regions = db.Country_Regions.OrderBy(item => item.Country_Region_Name);

            comboBoxRegion.DisplayMember = "Text";
            comboBoxRegion.ValueMember   = "Value";
            foreach (Country_Region r in regions)
            {
                comboBoxRegion.Items.Add(new { Text = r.Country_Region_Name, Value = r.Country_Region_Code });
            }
            comboBoxRegion.SelectedIndex = comboBoxRegion.FindStringExact("לא ידוע");
            //comboBoxRegion.SelectedIndex = 0;

            //Lishkot
            var lishkot = db.Lishkot_Mana.OrderBy(item => item.Lishkat_Mana_Name);

            comboBoxLishka.DisplayMember = "Text";
            comboBoxLishka.ValueMember   = "Value";
            foreach (Lishkat_Mana l in lishkot)
            {
                comboBoxLishka.Items.Add(new { Text = l.Lishkat_Mana_Name, Value = l.Lishkat_Mana_Code });
            }
            comboBoxLishka.SelectedIndex = comboBoxLishka.FindStringExact("");
            //comboBoxLishka.SelectedIndex = 0;

            //Muacot
            var muacot = db.Regional_Councils.OrderBy(item => item.Regional_Council_Name);

            comboBoxMuaca.DisplayMember = "Text";
            comboBoxMuaca.ValueMember   = "Value";
            foreach (Regional_Council m in muacot)
            {
                comboBoxMuaca.Items.Add(new { Text = m.Regional_Council_Name, Value = m.Regional_Council_Code });
            }
            comboBoxMuaca.SelectedIndex = comboBoxMuaca.FindStringExact("");
            //comboBoxMuaca.SelectedIndex = 0;
        }
示例#5
0
文件: FormCity.cs 项目: han6man/EF6
 public FormCity(WorldGeoDataDB db)
 {
     InitializeComponent();
     InitializeComboBoxes(db);
 }
示例#6
0
文件: Program.cs 项目: han6man/EF6
        private static void LoadCitiesFromXmlByXmlDocument(string fileName)
        {
            XmlDocument xmlDocument = new XmlDocument();

            List <Country_Region>   regions = new List <Country_Region>();
            List <Lishkat_Mana>     lishkot = new List <Lishkat_Mana>();
            List <Regional_Council> muacot  = new List <Regional_Council>();
            List <City>             cities  = new List <City>();

            SplashScreen.SetStatus("Loading XML " + fileName);
            xmlDocument.Load(fileName);
            SplashScreen.SetStatus(fileName + " XML Loaded");

            SplashScreen.SetStatus("Parsing XML");
            foreach (XmlNode node in xmlDocument.DocumentElement)
            {
                //foreach (XmlNode child in node.ChildNodes)
                //{
                //
                //}

                Country_Region region = new Country_Region
                {
                    Country_Region_Code = int.Parse(node.ChildNodes[4].InnerText),
                    Country_Region_Name = node.ChildNodes[5].InnerText.Trim()
                };
                if (!regions.Exists(x => x.Country_Region_Code == region.Country_Region_Code))
                {
                    regions.Add(region);
                }

                Lishkat_Mana lishka = new Lishkat_Mana
                {
                    Lishkat_Mana_Code = int.Parse(node.ChildNodes[6].InnerText),
                    Lishkat_Mana_Name = node.ChildNodes[7].InnerText.Trim()
                };
                if (!lishkot.Exists(x => x.Lishkat_Mana_Code == lishka.Lishkat_Mana_Code))
                {
                    lishkot.Add(lishka);
                }

                Regional_Council muaca = new Regional_Council
                {
                    Regional_Council_Code = int.Parse(node.ChildNodes[8].InnerText),
                    Regional_Council_Name = node.ChildNodes[9].InnerText.Trim()
                };
                if (!muacot.Exists(x => x.Regional_Council_Code == muaca.Regional_Council_Code))
                {
                    muacot.Add(muaca);
                }

                City city = new City
                {
                    //Table = node.ChildNodes[0].InnerText,
                    City_Code           = int.Parse(node.ChildNodes[1].InnerText),
                    City_Name           = node.ChildNodes[2].InnerText.Trim(),
                    City_Name_En        = node.ChildNodes[3].InnerText.Trim(),
                    Country_Region_Code = int.Parse(node.ChildNodes[4].InnerText),
                    //Region_name = node.ChildNodes[5].InnerText,
                    Lishkat_Mana_Code = int.Parse(node.ChildNodes[6].InnerText),
                    //Lishka_Name = node.ChildNodes[7].InnerText,
                    Regional_Council_Code = int.Parse(node.ChildNodes[8].InnerText),
                    //Muaca_Izorit_Name = node.ChildNodes[9].InnerText
                };
                if (!cities.Exists(x => x.City_Code == city.City_Code))
                {
                    cities.Add(city);
                }

                /*
                 * if (db.Country_Regions.Find(region.Country_Region_Code) == null)
                 *  db.Country_Regions.Add(region);
                 * //db.SaveChanges();
                 *
                 * if (db.Lishkot_Mana.Find(lishka.Lishkat_Mana_Code) == null)
                 *  db.Lishkot_Mana.Add(lishka);
                 * //db.SaveChanges();
                 *
                 * if (muaca.Regional_Council_Code != 0 || db.Regional_Councils.Find(muaca.Regional_Council_Code) == null)
                 *  db.Regional_Councils.Add(muaca);
                 * //db.SaveChanges();
                 *
                 * if (db.Cities.Find(city.City_Code) == null)
                 *  db.Cities.Add(city);
                 * //db.SaveChanges();
                 */
            }
            SplashScreen.SetStatus("XML Parsed");

            SplashScreen.SetStatus("Conecting to db");
            using (WorldGeoDataDB db = new WorldGeoDataDB())
            {
                SplashScreen.SetStatus("Ading data to DB");

                SplashScreen.SetStatus("Ading regions");
                db.Country_Regions.AddRange(regions);
                db.SaveChanges();
                SplashScreen.SetStatus("Country_Regions Added");

                SplashScreen.SetStatus("Ading lishkot");
                db.Lishkot_Mana.AddRange(lishkot);
                db.SaveChanges();
                SplashScreen.SetStatus("Lishkot_Mana Added");

                SplashScreen.SetStatus("Ading muacot");
                db.Regional_Councils.AddRange(muacot);
                db.SaveChanges();
                SplashScreen.SetStatus("Muacot Added");

                SplashScreen.SetStatus("Ading cities");
                db.Cities.AddRange(cities);
                db.SaveChanges();
                SplashScreen.SetStatus("Cities Added");
            }
        }
示例#7
0
文件: FormStreet.cs 项目: han6man/EF6
 public FormStreet(WorldGeoDataDB db)
 {
     InitializeComponent();
     InitializeBoxes(db);
 }