public void Get_Top_3_Oldest_Authors_Test() { LINQ_QUERYs query3 = new LINQ_QUERYs(); IQueryable <Author> found = query3.Top3OldestAuthors(); Assert.AreEqual(3, found.ToArray().Length); }
private void exec_btn_3_Click(object sender, RoutedEventArgs e) { Hidden_Controls(); try { List <Author> result = query.Top3OldestAuthors().ToList(); if (result.Count != 0) // Если запрос вернул данные с таблицы { foreach (Author b in result) { listBox.Items.Add(b); } } else { string empty = "Данных по данному запросу не найдены...Попробуйте наполнить таблицу!"; listBox.Items.Add(empty); } } catch (Exception ex) { this.Title = ex.Message; } }