hi all,
In our project we have a requirement that when a set of records are returned by the database the records should be sorted with respect to the TITLE field in the record. The records will have to be sorted alphabetically but if the title of a record has a number in it then it should come after the records whose title only consists of alphabets.
Details: we are using SQL Server , and c#. The data from the database comes to an Entity class whic forwards the data to other layers.
So, What will be the possible and effective solution for this requirement.