J
John
Anyone knows how to use Strong Typed DataSet to find row. After added Order
Details table, here's how I did
SQLConn.Open()
Order_Details.Fill(NorthWind, "Order Details")
SQLConn.Close()
'the next line return nothing
Dim dt As NorthWind.Order_DetailsDataTable = New
NorthWind.Order_DetailsDataTable
Dim dr() As NorthWind.Order_DetailsRow = dt.Select("OrderID=10248")
this is not working. Please help
Details table, here's how I did
SQLConn.Open()
Order_Details.Fill(NorthWind, "Order Details")
SQLConn.Close()
'the next line return nothing
Dim dt As NorthWind.Order_DetailsDataTable = New
NorthWind.Order_DetailsDataTable
Dim dr() As NorthWind.Order_DetailsRow = dt.Select("OrderID=10248")
this is not working. Please help