In our project, we have a requirement that when the recordset is returned to the database, the records must be sorted relative to the TITLE field in the record. Entries should be sorted alphabetically, but if there is a number in the entry name, then it should appear after entries whose title consists only of alphabets.
More: we use SQL Server and C #. Data from the database enters the Entity class, which passes data to other layers.
So, what will be the possible and effective solution for this requirement.
source
share