After a LINQ query, I try to connect the response with the DataGrid:
context = new cokoEntities4(); s = new List<string>(); var itemList = from SchoolName in context.View_1 select SchoolName; foreach (var item in itemList) { Console.WriteLine(item.SchoolName); s.Add(item.SchoolName); } dg.ItemsSource = s; Here is what he shows me:

Although it is correct to output to the console:
ГБОУ «Гимназия № 12» ГБОУ «Гимназия № 14» ГБОУ «Общеобразовательная школа-интернат № 1» ГБОУ «Общеобразовательная школа-интернат для детей-сирот и детей, оставшихся без попечения родителей № 2» ГБОУ «Президентский лицей» Why it happens?