中进行字母数字排序

中进行字母数字排序

本文介绍了使用iqueryable在LINQ(C#)中进行字母数字排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你能否提供使用iqueryable进行字母数字排序的解决方案。

我使用mysql作为数据库。



我想对它们进行排序仅在数据库中。我不想在记忆中对它们进行排序。



问候,

Santosh



我尝试了什么:



我试过可以使用icomparer进行字母数字排序,但是它不能用于可怜的。

使用icomparer,我们可以在内存中完成。

但我的要求是在数据库本身中按字母顺序对记录进行排序。

Could you please provide solution for alphanumeric sorting using iqueryable.
I am using mysql as database.

I want to sort them in the database only. I dont want to sort them in the memory.

Regards,
Santosh

What I have tried:

I have tried it is possible to use the icomparer for alphanumeric sort but it does not work with iqueryable .
With icomparer, we can do it with in memory.
But my requirement is to sort the records alphanumerically in the database itself.

推荐答案


这篇关于使用iqueryable在LINQ(C#)中进行字母数字排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 13:11