我试图从我的数据库中获取一个整数,如下所示(我知道它将是唯一的):
Dim SequenceyQuery = From a In db.ServiceSequences
Where (a.ServiceId = ReqService And a.StationId = AtStation)
Select a.Sequence
Dim TempSequence As Integer = CInt(SequenceyQuery.ToString)
但是在尝试将其转换为第二行代码时遇到了问题。这是从此处获取该整数的最佳方法以及如何将其作为整数获取?