private void povuciKolekcije() { using (var DB = new PlanBDbContext()) { foreach (Follow f in followLista) { foreach (MuzickaKolekcija mk in DB.MuzickaKolekcija) { if (mk.idAzure == f.Following_KorisnikID) { Kolekcije.Add(mk); } } } } }
public MainWindow() { InitializeComponent(); InstancaKolekcije = new Kolekcije(); VrstaListe = InstancaKolekcije.ListaVrste; this.DataContext = this; InstanceMW = this; mapaImg.ImageSource = new BitmapImage(new Uri("pack://application:,,,/Images/map.png")); startPoint = new Point(); try { Kolekcije.Ucitaj("C:/Projects/HCI2018PZ4.3EURA78-2015/HCI2018PZ4.3EURA78-2015/dataTest.xml"); } catch (Exception e) { } }