Exemplo n.º 1
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)
 {
     // cria o database
     using (var bd = new DBDataContext())
     {
         // caso o database nao exista ele é criado
         if (!bd.DatabaseExists())
         {
             bd.CreateDatabase();
         }
     }
 }