Linq 排序用orderby时,Null是最小值,比如:
users 中 birthday 字段有null值,如果排序
var query=from s in db.users orderby s.birthday select s;
则,null会排在前面。