0
我有一個LINQ查詢,如下所示:循環通過Linq查詢
Dim CustQuery = From a In db.Customers
Where a.GroupId = sendmessage.GroupId
Select a.CustCellphone
,並想經過每個結果,並得到了手機號碼做的代碼peice的。我嘗試了以下,但似乎無法得到它正確的:
For Each CustQuery.ToString()
...
Next
所以我的問題是如何做到這一點?