0
我想使用linq從datatable中獲取數據。我在Cache中有2個表,並且我想要連接這些表,然後從resultset中獲取值。我粘貼了原始Sql查詢和我的linq查詢here.My linq查詢返回nothing.Where做我錯過?我原來的SQL查詢返回1行,但Q1什麼Linq加入問題
「原始SQL查詢
select b.FL_DSD from LU_CUSTOMER a, LU_TYPE b where a.ID_TYPE=b.ID_TYPE and a.ID_NO=355
我的LINQ查詢
Dim q1 = From c In cls_StaticData.Get_Data(cls_StaticData.Tables.LU_CUSTOMER) Where c.Item("ID_NO") = 355 Join _
o In cls_StaticData.Get_Data(cls_StaticData.Tables.LU_TYPE) On c.Item("ID_TYPE") Equals o.Item("ID_TYPE")