I am writing an app for my company and am currently working on the search functionality. When a user searches for an item, I want to display the highest version (which is st
Why are you sorting if you only need "the highest version"? It sounds like you could avoid some overhead if you used Max().
Also, you really should change the column type to integer.