LinqDBDataContext lqDB=new LinqDBDataContext(ConfigurationManager.ConnectionString["db_Linq"].ConnectionString.ToString());
//查询结果
var result = from u in lqDB.tb_info
             where u.ID>1
             select new
             {
                Type = u.type
             }
//设置绑定字段
DropDownList.DataTextField = "Type"
//绑定查询结果
DropDownList.DataSource = result;
DropDownList.DataBind();其中的  select new { Type = u.type } 是什么意思?