Currently I get the Release Version from a website using Selenium and it is stored as a string.
The Release Versions are 14.14,14.14.4,14.15,14.15.1,14.15.2 etc.
I need to sort them using C# and the Database Admin needs to be able to sort them using SQL. All of the Release Version items are currently stored as strings.
I do all my SQL stuff using LINQ to SQL if that matters.
What is the best way to sort them in both C# and SQL? As strings? Or should I convert them? What data type would be used if converting them?