我使用此代码从表中检索表记录,我想在单独的文本框中填写每个单元格数据,我接下来可以做什么?
Dim match = From p In students_entities.StudentsInformations
Where p.ID = id
Select p
txtfirstName.text=????
答案 0 :(得分:1)
如果你用id选择,那么只有一条记录,所以你可以这样做
Dim match = (From p In students_entities.StudentsInformations
Where p.ID = id
Select p).FirstOrDefault
If match IsNot Nothing Then
txtfirstName.text= match.FirstName
End If
或
Dim match = students_entities.StudentsInformations.FirstOrDefault(Function(f) f.ID = id)
If match IsNot Nothing Then
txtfirstName.text= match.FirstName
End If
答案 1 :(得分:0)
你应该告诉EF你想要的第一行。使用FirstOrDefault或Single函数。
Dim match = From p In students_entities.StudentsInformations
Where p.ID = id
Select p
txtfirstName.text= match.FirstOrDefault().name