It is possible to populate many labels from one SqlCommand instead of writing many SqlCommand?
For example
select name from users where ID=1
select name from users where ID=2
select name from users where ID=3
select name from users where ID=4
Label1.Text = //here should be ID 1
Label2.Text = //here should be ID 2
Label1.Text = //here should be ID 3
Label2.Text = //here should be ID 4
So I ask - is it possible using just one SqlCommand?
System.Data.Common.DbConnection.