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
try this:
var items = results.(Select(v => v).OrderBy(v => v.PadLeft(4));
that'll work in Linq2Sql