Пример #1
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            string path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);

            Directory.CreateDirectory(Path.Combine(path, "Upsoft"));
            // Set the data directory to the users %AppData% folder
            // So the database file will be placed in:  C:\\Users\\<Username>\\AppData\\Roaming\\ 
            AppDomain.CurrentDomain.SetData("DataDirectory", Path.Combine(path, "Upsoft"));

            using (var context = new ExamManagementDbContext("SQLCompactTest"))
            {
                context.Database.Initialize(true);

                context.ClassExamed.Add(new ClassExamedEntity(Guid.NewGuid(), Guid.NewGuid(), Guid.NewGuid()));
                context.SaveChanges();
            }

            this.MainWindow = new MainWindow()
            {
                DataContext = new MainWindowViewModel()
            };
            this.MainWindow.Show();
        }
Пример #2
0
        public void manage()
        {
            ExamManagementDbContext cont = new ExamManagementDbContext();

            cont.Person.ToList();
        }