Hi, I have a large table that I query in vb.net with older code. I thought there would be a performance increase by converting it to LINQ, but I'm finding the opposite to be true. The LINQ query below is much slower then my sqldataadapter code (sometimes it even times out) and I'm not sure if it's my noob LINQ code or not. The table is VERY large, about 4.5 million records: Here is my older style working code that is MUCH faster then my LINQ code: Code Snippet MyCommand = New SqlDataAdapter( "select
Read More...