Andrey Barabolya
About me
I am 38 years old. I live in the Republic of Belarus, Mogilev.
Responsible, purposeful, easily trained. I have experience in developing small applications in C#. To facilitate repetitive actions during work.
I learned about this platform from a friend, read reviews, decided to try my hand at Javascript.
Contacts
- E-mail: andreybarabol@gmail.com
- Telegram: Telegram
- GitHub: GitHub
- Discord: AndY#2257
Education
- Belarusian Russian University
Languages
- English - A2
Projects
Code example
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 { Secondname = p.Secondname, Firstname = p.Firstname,
Surname = p.Surname, Company = c.Name,
Position = pos.Name, Group = g.Name };
employyesDataGridView.DataSource = people.ToList();
}