我使用这样的 SQL 将两列绑定到下拉列表中
string query = "Select Id,Name+':'+Distribution_name+' 'as Name1 from BR_supervisor where( (id not in (select SupId from tbluser where active='true')) and active='true' ) ";
DropDownList3.DataTextField = "Name1";
DropDownList3.DataValueField = "Id";
DropDownList3.DataBind();
现在我想将我的查询转换为 linq 表达式并绑定下拉列表。这个怎么做?