码迷,mamicode.com
首页 > 数据库 > 详细

SQLite中文排序

时间:2014-12-23 19:22:45      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

定义一个类:

技术分享
using System.Data.SQLite;

namespace DAL
{
    /// <summary>
    /// SQLite中文排序
    /// </summary>
    [SQLiteFunction(FuncType = FunctionType.Collation, Name = "PinYin")]
    public class SQLitePinYingSort : SQLiteFunction
    {
        public override int Compare(string x, string y)
        {
            return string.Compare(x, y);
        }
    }
}
View Code

在Global.asax.cs文件的Application_Start方法中添加如下代码:

SQLiteFunction.RegisterFunction(typeof(SQLitePinYingSort)); //使SQLite支持中文排序

SQL代码:

技术分享
select ct.* 
from mas_channel_type ct 
where ct.pId=-1
order by ct.typeName COLLATE PinYin
View Code

 

SQLite中文排序

标签:

原文地址:http://www.cnblogs.com/s0611163/p/4180546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!