1
DataTable.Selectメソッドを使用して、1つの列に複数の値をフィルターする必要があります。DataTable.Select filter
Dim totalFatal As Integer = _
m_DataSet.Tables("tblAccidentNonMotorist").Select(String.Format(_
"[AccidentNumber] = '{0}' AND _
CONTAINS([InjuryClass], '"01" OR "02" OR "03"'", accidentNumber)).Length
フィルタにCONTAINSを使用できますか?
はどうもありがとうございましほしいと思います! – Spidermain50