using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; using WpfApp1.Models; namespace WpfApp1 { /// /// Логика взаимодействия для ForgotPassword.xaml /// public partial class ForgotPassword : Window { ApplicationContext db = new ApplicationContext(); public ForgotPassword() { InitializeComponent(); } private void Button_Click(object sender, RoutedEventArgs e) { // гарантируем, что база данных создана db.Database.EnsureCreated(); // загружаем данные из БД db.Users.Load(); // и устанавливаем данные в качестве контекста Users login = db.Users.Local.FirstOrDefault(x => x.Login == tbLogin.Text); if (login != null) { MessageBox.Show($"Ваш пароль {login.Password}"); Close(); } else { MessageBox.Show("Такого логина не существует!"); } } } }