示例#1
0
        void carregarAluno()
        {
            using (var db = new AlunoContext())
            {

                var resultado = (from Aluno in db.alunos
                                 select Aluno).ToList();

                listaAluno.ItemsSource = resultado;

            }
        }
示例#2
0
        // Code to execute when the application is launching (eg, from Start)
        // This code will not execute when the application is reactivated
        private void Application_Launching(object sender, LaunchingEventArgs e)
        {
            using (var bd = new AlunoContext())
            {
                if (!bd.DatabaseExists())
                {
                    bd.CreateDatabase();
                }

            }
        }