I am using this code to retrieve a table record from a table, I want to fill every cell data in a separate text box, what I can do next?
Dim match = From p In students_entities.StudentsInformations
Where p.ID = id
Select p
txtfirstName.text=????
txtfirstName.Text = p.First().FirstNameassuming there is a match and you want to show the first match only.