I am 38 years old. I live in the Republic of Belarus, Mogilev city. Higher technical education. Responsible, goal-oriented, easily trained. There is experience in developing applications in C #, for personal use, to facilitate repetitive actions. I learned about this platform from a friend, read reviews, decided to try my skills in Javascript.
University: BELARUSIAN-RUSSIAN UNIVERSITY Speciality: automated information processing systems visit the university website
English - A2
private void companyIdValue_SelectedIndexChanged(object sender, EventArgs e)
{
var people = from p in db.People
join c in db.Companies on p.CompanyId equals c.CompanyId
join pos in db.Positions on p.PositionId equals pos.PositionId
join g in db.Groups on p.GroupId equals g.GroupId
where p.CompanyId == companyIdValue.SelectedIndex+1
select new { Фамилия = p.Secondname, Имя = p.Firstname,
Отчество = p.Surname, Компания = c.Name,
Должность = pos.Name, Группа = g.Name };
employyesDataGridView.DataSource = people.ToList();
}