我有一個表,看起來像這樣:VB.NET LINQ結果集操作
ID/Description/textValue/dateValue/timeValue/Type
1/FRRSD /NULL /2010-04-16 00:00:00.000/NULL/classdates
現在,我已經有了一個LINQ命令拉僅排在類型是從該表classdates:
Dim dbGetRegisterDates As New dcConfigDataContext
Dim getDates = (From p In dbGetRegisterDates.webConfigOptions _
Where p.Type = "classdates" _
Select p)
我現在想顯示在五個不同的標籤中的數據,像這樣:
lblClass1.Text = "Your class is from " & getDates.Description("FRRSD").dateValue & "to " & getDates.Description("FRRCD").dateValue
lblClass2.Text = "Your class is from " & getDates.Description("SORSD").dateValue & "to " & getDates.Description("SORCD").dateValue
基本上,我想根據描述列值拉一行,然後從同一行返回datevalue列值。
您想要顯示dateValue,其中Description =「FRRCD」。 。 。 5次?重複?這聽起來不對。 – 2010-05-05 17:20:40
不,我會有lbl1Class.Text其中Description = FRRSD,lbl2Class.Text其中Description = SORSD等 – davemackey 2010-05-05 17:30:19