I am trying to bring the table out of the database to the DataGridView, so that the columns would be called differently, not like in the database
DataClassesDataContext db = new DataClassesDataContext(); var Orders = db.Orders .Select(x => new { FullName = x.Clients.fullName }) .ToList(); dgvOrders.DataSource = Orders; How to make that instead of FullName displayed "name"?

new { FullName = x.Clients.fullName }- here you can just rename it, which is an anonymous class. - Monk