This SQL statement ... Dim strSQL as String = _ "SELECT Name, CustomerID FROM Customers"... becomes this LINQ coding ...Dim customers = From cust In Customers _ Select cust.Name, cust.CustomerID
Post a Comment
No comments:
Post a Comment