VB.net で私の配列を照会する方法はありますか? レポートを照会するために一時的なものが必要ですが、一時的なもののためだけに外部データベースを作成したくありません。select * from tempTable
私はちょうどなどを言うことができる必要があります.
どんなヘルプやリンクも素晴らしいでしょう!
LINQを使用できます
Dim Report_Array As List(Of clsReport) = Get_Report_List
Dim Selected_Report As List(Of clsReport) = (From R As clsReport In Report_Array
WHERE R.ReportName = 'ABC')
LINQ を使用して、Vb.Net で配列をクエリできます。Visual Basic でのオブジェクトへの LINQ の使用の記事を参照してください。
Dim Birds() As String = {"Indigo Bunting", "Rose Breasted Grosbeak", _
"Robin", "House Finch", "Gold Finch", _
"Ruby Throated Hummingbird", _
"Rufous Hummingbird", "Downy Woodpecker"}
Dim list = From b In Birds _
Where b.StartsWith("R") _
Select b