using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Net.Sockets; using System.Text; using System.Threading.Tasks; namespace WpfApp1.Models { public class Clients { public int ID { get; set; } public string Surname { get; set; } public string Name { get; set; } public string PhoneNumber { get; set; } public string E_mail { get; set; } public string ClientName { get { ApplicationContext db = new ApplicationContext(); // гарантируем, что база данных создана db.Database.EnsureCreated(); // загружаем данные из БД db.Clients.Load(); Clients client = db.Clients.Local.FirstOrDefault(x => x.ID == ID); return client.Surname + " " + client.Name[0] + "."; } } } }